1
0
Fork 0

avcodec/mpeg4videodec: Remove write-only variable

Fix warning: variable 'time_incr' set but not used.

Signed-off-by: Zhao Zhili <zhilizhao@tencent.com>
This commit is contained in:
Zhao Zhili 2024-01-04 18:00:14 +08:00
parent 093be1fb06
commit bc944168db
1 changed files with 1 additions and 3 deletions

View File

@ -735,10 +735,8 @@ int ff_mpeg4_decode_video_packet_header(Mpeg4DecContext *ctx)
header_extension = get_bits1(&s->gb);
if (header_extension) {
int time_incr = 0;
while (get_bits1(&s->gb) != 0)
time_incr++;
;
check_marker(s->avctx, &s->gb, "before time_increment in video packed header");
skip_bits(&s->gb, ctx->time_increment_bits); /* time_increment */