1
0
mirror of https://github.com/FFmpeg/FFmpeg.git synced 2025-01-08 13:22:53 +02:00

Get rid of an unused variable, found by the clang static analyzer.

Originally committed as revision 18544 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
Michael Niedermayer 2009-04-17 12:41:37 +00:00
parent d728e3cd28
commit 03d5ea54c1

View File

@ -1180,14 +1180,14 @@ return -1;
#endif #endif
if(s->msmpeg4_version==1){ if(s->msmpeg4_version==1){
int start_code, num; int start_code;
start_code = (get_bits(&s->gb, 16)<<16) | get_bits(&s->gb, 16); start_code = (get_bits(&s->gb, 16)<<16) | get_bits(&s->gb, 16);
if(start_code!=0x00000100){ if(start_code!=0x00000100){
av_log(s->avctx, AV_LOG_ERROR, "invalid startcode\n"); av_log(s->avctx, AV_LOG_ERROR, "invalid startcode\n");
return -1; return -1;
} }
num= get_bits(&s->gb, 5); // frame number */ skip_bits(&s->gb, 5); // frame number */
} }
s->pict_type = get_bits(&s->gb, 2) + 1; s->pict_type = get_bits(&s->gb, 2) + 1;