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
ddabecbb
Commit
ddabecbb
authored
Sep 12, 2012
by
Michael Niedermayer
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
vc1dec: export adv profile color format indication
Signed-off-by:
Michael Niedermayer
<
michaelni@gmx.at
>
parent
2de88776
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
6 deletions
+4
-6
vc1.c
libavcodec/vc1.c
+4
-3
vc1.h
libavcodec/vc1.h
+0
-3
No files found.
libavcodec/vc1.c
View file @
ddabecbb
...
...
@@ -503,9 +503,10 @@ static int decode_sequence_header_adv(VC1Context *v, GetBitContext *gb)
}
if
(
get_bits1
(
gb
))
{
v
->
color_prim
=
get_bits
(
gb
,
8
);
v
->
transfer_char
=
get_bits
(
gb
,
8
);
v
->
matrix_coef
=
get_bits
(
gb
,
8
);
v
->
s
.
avctx
->
color_primaries
=
get_bits
(
gb
,
8
);
v
->
s
.
avctx
->
color_trc
=
get_bits
(
gb
,
8
);
v
->
s
.
avctx
->
colorspace
=
get_bits
(
gb
,
8
);
v
->
s
.
avctx
->
color_range
=
AVCOL_RANGE_MPEG
;
}
}
...
...
libavcodec/vc1.h
View file @
ddabecbb
...
...
@@ -210,9 +210,6 @@ typedef struct VC1Context{
int
panscanflag
;
///< NUMPANSCANWIN, TOPLEFT{X,Y}, BOTRIGHT{X,Y} present
int
refdist_flag
;
///< REFDIST syntax element present in II, IP, PI or PP field picture headers
int
extended_dmv
;
///< Additional extended dmv range at P/B frame-level
int
color_prim
;
///< 8bits, chroma coordinates of the color primaries
int
transfer_char
;
///< 8bits, Opto-electronic transfer characteristics
int
matrix_coef
;
///< 8bits, Color primaries->YCbCr transform matrix
int
hrd_param_flag
;
///< Presence of Hypothetical Reference
///< Decoder parameters
int
psf
;
///< Progressive Segmented Frame
...
...
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