Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in / Register
Toggle navigation
F
ffmpeg.wasm-core
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Linshizhi
ffmpeg.wasm-core
Commits
e6a1dfc9
Commit
e6a1dfc9
authored
Dec 21, 2017
by
Mark Thompson
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
mpeg4videodec: Fix unused variable warning
video_format is not used.
parent
0c9ab5ef
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
3 deletions
+4
-3
mpeg4videodec.c
libavcodec/mpeg4videodec.c
+4
-3
No files found.
libavcodec/mpeg4videodec.c
View file @
e6a1dfc9
...
...
@@ -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
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment