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
6cc8cfe3
Commit
6cc8cfe3
authored
Feb 09, 2019
by
Martin Vignali
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
avcodec/proresenc_aw : simplify frame flags
parent
c679119a
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
5 deletions
+5
-5
proresenc_anatoliy.c
libavcodec/proresenc_anatoliy.c
+5
-5
No files found.
libavcodec/proresenc_anatoliy.c
View file @
6cc8cfe3
...
@@ -684,6 +684,7 @@ static int prores_encode_frame(AVCodecContext *avctx, AVPacket *pkt,
...
@@ -684,6 +684,7 @@ static int prores_encode_frame(AVCodecContext *avctx, AVPacket *pkt,
int
header_size
=
148
;
int
header_size
=
148
;
uint8_t
*
buf
;
uint8_t
*
buf
;
int
pic_size
,
ret
;
int
pic_size
,
ret
;
uint8_t
frame_flags
;
int
frame_size
=
FFALIGN
(
avctx
->
width
,
16
)
*
FFALIGN
(
avctx
->
height
,
16
)
*
16
+
500
+
AV_INPUT_BUFFER_MIN_SIZE
;
//FIXME choose tighter limit
int
frame_size
=
FFALIGN
(
avctx
->
width
,
16
)
*
FFALIGN
(
avctx
->
height
,
16
)
*
16
+
500
+
AV_INPUT_BUFFER_MIN_SIZE
;
//FIXME choose tighter limit
...
@@ -705,11 +706,10 @@ static int prores_encode_frame(AVCodecContext *avctx, AVPacket *pkt,
...
@@ -705,11 +706,10 @@ static int prores_encode_frame(AVCodecContext *avctx, AVPacket *pkt,
bytestream_put_buffer
(
&
buf
,
ctx
->
vendor
,
4
);
bytestream_put_buffer
(
&
buf
,
ctx
->
vendor
,
4
);
bytestream_put_be16
(
&
buf
,
avctx
->
width
);
bytestream_put_be16
(
&
buf
,
avctx
->
width
);
bytestream_put_be16
(
&
buf
,
avctx
->
height
);
bytestream_put_be16
(
&
buf
,
avctx
->
height
);
if
(
avctx
->
profile
>=
FF_PROFILE_PRORES_4444
)
{
/* 4444 or 4444 Xq */
frame_flags
=
0x82
;
/* 422 not interlaced */
*
buf
++
=
0xC2
;
// 444, not interlaced
if
(
avctx
->
profile
>=
FF_PROFILE_PRORES_4444
)
/* 4444 or 4444 Xq */
}
else
{
frame_flags
|=
0x40
;
/* 444 chroma */
*
buf
++
=
0x82
;
// 422, not interlaced
*
buf
++
=
frame_flags
;
}
*
buf
++
=
0
;
/* reserved */
*
buf
++
=
0
;
/* reserved */
/* only write color properties, if valid value. set to unspecified otherwise */
/* only write color properties, if valid value. set to unspecified otherwise */
*
buf
++
=
ff_int_from_list_or_default
(
avctx
,
"frame color primaries"
,
pict
->
color_primaries
,
valid_primaries
,
0
);
*
buf
++
=
ff_int_from_list_or_default
(
avctx
,
"frame color primaries"
,
pict
->
color_primaries
,
valid_primaries
,
0
);
...
...
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