1
mirror of https://git.videolan.org/git/ffmpeg.git synced 2024-08-08 02:15:46 +02:00

Simplify show_bits_long and copy the GetBitsContext around only once instead of twice.

Originally committed as revision 17736 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
Reimar Döffinger 2009-03-02 19:42:31 +00:00
parent ee4d0322e8
commit edd532db64

View File

@ -713,9 +713,7 @@ static inline unsigned int show_bits_long(GetBitContext *s, int n){
if(n<=17) return show_bits(s, n);
else{
GetBitContext gb= *s;
int ret= get_bits_long(s, n);
*s= gb;
return ret;
return get_bits_long(&gb, n);
}
}