Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMark Thompson <sw@jkqxz.net>2017-12-21 22:54:56 +0300
committerMark Thompson <sw@jkqxz.net>2017-12-26 20:25:46 +0300
commite6a1dfc9ce81a443b16776a5fbd841284efa3613 (patch)
tree9cf7c55340e068c112d19c9a03edecf38c902026 /libavcodec/mpeg4videodec.c
parent0c9ab5ef9c1ee852c80c859c9e07efe8730b57ed (diff)
mpeg4videodec: Fix unused variable warning
video_format is not used.
Diffstat (limited to 'libavcodec/mpeg4videodec.c')
-rw-r--r--libavcodec/mpeg4videodec.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/libavcodec/mpeg4videodec.c b/libavcodec/mpeg4videodec.c
index e9cba25dd0..12755b5e8a 100644
--- a/libavcodec/mpeg4videodec.c
+++ b/libavcodec/mpeg4videodec.c
@@ -1768,9 +1768,10 @@ static int mpeg4_decode_visual_object(MpegEncContext *s, GetBitContext *gb)
visual_object_type == VOT_STILL_TEXTURE_ID) {
int video_signal_type = get_bits1(gb);
if (video_signal_type) {
- int video_format = get_bits(gb, 3);
- int video_range = get_bits1(gb);
- int color_description = get_bits1(gb);
+ int video_range, color_description;
+ skip_bits(gb, 3); // video_format
+ video_range = get_bits1(gb);
+ color_description = get_bits1(gb);
s->avctx->color_range = video_range ? AVCOL_RANGE_JPEG : AVCOL_RANGE_MPEG;