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
3be79178
Commit
3be79178
authored
Feb 24, 2012
by
Michael Niedermayer
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
proresenc_anatoliy: switch to encode2
Signed-off-by:
Michael Niedermayer
<
michaelni@gmx.at
>
parent
73f8f7e8
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
24 additions
and
9 deletions
+24
-9
proresenc_anatoliy.c
libavcodec/proresenc_anatoliy.c
+24
-9
No files found.
libavcodec/proresenc_anatoliy.c
View file @
3be79178
...
...
@@ -484,14 +484,25 @@ static int prores_encode_picture(AVCodecContext *avctx, AVFrame *pic,
return
sl_data
-
buf
;
}
static
int
prores_encode_frame
(
AVCodecContext
*
avctx
,
unsigned
char
*
buf
,
int
buf_size
,
void
*
data
)
static
int
prores_encode_frame
(
AVCodecContext
*
avctx
,
AVPacket
*
pkt
,
const
AVFrame
*
pict
,
int
*
got_packet
)
{
AVFrame
*
pic
=
data
;
ProresContext
*
ctx
=
avctx
->
priv_data
;
int
header_size
=
148
;
int
pic_size
=
prores_encode_picture
(
avctx
,
pic
,
buf
+
header_size
+
8
,
buf_size
-
header_size
-
8
);
uint8_t
*
buf
;
int
pic_size
,
ret
;
int
frame_size
=
FFALIGN
(
avctx
->
width
,
16
)
*
FFALIGN
(
avctx
->
height
,
16
)
*
16
+
500
+
FF_MIN_BUFFER_SIZE
;
//FIXME choose tighter limit
if
(
!
pkt
->
data
&&
(
ret
=
av_new_packet
(
pkt
,
frame_size
+
FF_MIN_BUFFER_SIZE
))
<
0
)
{
av_log
(
avctx
,
AV_LOG_ERROR
,
"Error getting output packet.
\n
"
);
return
ret
;
}
buf
=
pkt
->
data
;
pic_size
=
prores_encode_picture
(
avctx
,
pict
,
buf
+
header_size
+
8
,
pkt
->
size
-
header_size
-
8
);
bytestream_put_be32
(
&
buf
,
pic_size
+
8
+
header_size
);
bytestream_put_buffer
(
&
buf
,
"icpf"
,
4
);
...
...
@@ -513,7 +524,11 @@ static int prores_encode_frame(AVCodecContext *avctx, unsigned char *buf,
bytestream_put_buffer
(
&
buf
,
QMAT_LUMA
[
avctx
->
profile
],
64
);
bytestream_put_buffer
(
&
buf
,
QMAT_CHROMA
[
avctx
->
profile
],
64
);
return
pic_size
+
8
+
header_size
;
pkt
->
flags
|=
AV_PKT_FLAG_KEY
;
pkt
->
size
=
pic_size
+
8
+
header_size
;
*
got_packet
=
1
;
return
0
;
}
static
void
scale_mat
(
const
uint8_t
*
src
,
int
*
dst
,
int
scale
)
...
...
@@ -591,7 +606,7 @@ AVCodec ff_prores_anatoliy_encoder = {
.
priv_data_size
=
sizeof
(
ProresContext
),
.
init
=
prores_encode_init
,
.
close
=
prores_encode_close
,
.
encode
=
prores_encode_frame
,
.
encode
2
=
prores_encode_frame
,
.
pix_fmts
=
(
const
enum
PixelFormat
[]){
PIX_FMT_YUV422P10
,
PIX_FMT_NONE
},
.
long_name
=
NULL_IF_CONFIG_SMALL
(
"Apple ProRes"
),
.
profiles
=
profiles
...
...
@@ -604,7 +619,7 @@ AVCodec ff_prores_encoder = {
.
priv_data_size
=
sizeof
(
ProresContext
),
.
init
=
prores_encode_init
,
.
close
=
prores_encode_close
,
.
encode
=
prores_encode_frame
,
.
encode
2
=
prores_encode_frame
,
.
pix_fmts
=
(
const
enum
PixelFormat
[]){
PIX_FMT_YUV422P10
,
PIX_FMT_NONE
},
.
long_name
=
NULL_IF_CONFIG_SMALL
(
"Apple ProRes"
),
.
profiles
=
profiles
...
...
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