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
63bfcb69
Commit
63bfcb69
authored
Jan 10, 2009
by
Carl Eugen Hoyos
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fill range_map* in VC1Context.
Originally committed as revision 16515 to
svn://svn.ffmpeg.org/ffmpeg/trunk
parent
78acb9e7
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
4 deletions
+4
-4
vc1.c
libavcodec/vc1.c
+4
-4
No files found.
libavcodec/vc1.c
View file @
63bfcb69
...
...
@@ -1086,13 +1086,13 @@ static int decode_entry_point(AVCodecContext *avctx, GetBitContext *gb)
}
if
(
v
->
extended_mv
)
v
->
extended_dmv
=
get_bits1
(
gb
);
if
(
get_bits1
(
gb
))
{
if
(
(
v
->
range_mapy_flag
=
get_bits1
(
gb
)
))
{
av_log
(
avctx
,
AV_LOG_ERROR
,
"Luma scaling is not supported, expect wrong picture
\n
"
);
skip_bits
(
gb
,
3
);
// Y range, ignored for now
v
->
range_mapy
=
get_bits
(
gb
,
3
);
}
if
(
get_bits1
(
gb
))
{
if
(
(
v
->
range_mapuv_flag
=
get_bits1
(
gb
)
))
{
av_log
(
avctx
,
AV_LOG_ERROR
,
"Chroma scaling is not supported, expect wrong picture
\n
"
);
skip_bits
(
gb
,
3
);
// UV range, ignored for now
v
->
range_mapuv
=
get_bits
(
gb
,
3
);
}
av_log
(
avctx
,
AV_LOG_DEBUG
,
"Entry point info:
\n
"
...
...
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