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
19ec283f
Commit
19ec283f
authored
Oct 14, 2011
by
Janne Grunau
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
prores: add missing feature warning for alpha
parent
7ad06beb
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
0 deletions
+5
-0
proresdec.c
libavcodec/proresdec.c
+5
-0
No files found.
libavcodec/proresdec.c
View file @
19ec283f
...
@@ -71,6 +71,7 @@ typedef struct {
...
@@ -71,6 +71,7 @@ typedef struct {
int
slice_height_factor
;
int
slice_height_factor
;
int
num_x_mbs
;
int
num_x_mbs
;
int
num_y_mbs
;
int
num_y_mbs
;
int
alpha_info
;
}
ProresContext
;
}
ProresContext
;
...
@@ -189,6 +190,10 @@ static int decode_frame_header(ProresContext *ctx, const uint8_t *buf,
...
@@ -189,6 +190,10 @@ static int decode_frame_header(ProresContext *ctx, const uint8_t *buf,
ctx
->
picture
.
top_field_first
=
ctx
->
frame_type
&
1
;
ctx
->
picture
.
top_field_first
=
ctx
->
frame_type
&
1
;
}
}
ctx
->
alpha_info
=
buf
[
17
]
&
0xf
;
if
(
ctx
->
alpha_info
)
av_log_missing_feature
(
avctx
,
"alpha channel"
,
0
);
ctx
->
qmat_changed
=
0
;
ctx
->
qmat_changed
=
0
;
ptr
=
buf
+
20
;
ptr
=
buf
+
20
;
flags
=
buf
[
19
];
flags
=
buf
[
19
];
...
...
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