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
d48c2063
Commit
d48c2063
authored
Nov 09, 2013
by
Anton Khirnov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
qtrleenc: use the AVFrame API properly.
parent
c8a52519
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
25 additions
and
19 deletions
+25
-19
qtrleenc.c
libavcodec/qtrleenc.c
+25
-19
No files found.
libavcodec/qtrleenc.c
View file @
d48c2063
...
...
@@ -36,7 +36,6 @@
typedef
struct
QtrleEncContext
{
AVCodecContext
*
avctx
;
AVFrame
frame
;
int
pixel_size
;
AVPicture
previous_frame
;
unsigned
int
max_buf_size
;
...
...
@@ -60,6 +59,19 @@ typedef struct QtrleEncContext {
uint8_t
*
skip_table
;
}
QtrleEncContext
;
static
av_cold
int
qtrle_encode_end
(
AVCodecContext
*
avctx
)
{
QtrleEncContext
*
s
=
avctx
->
priv_data
;
av_frame_free
(
&
avctx
->
coded_frame
);
avpicture_free
(
&
s
->
previous_frame
);
av_free
(
s
->
rlecode_table
);
av_free
(
s
->
length_table
);
av_free
(
s
->
skip_table
);
return
0
;
}
static
av_cold
int
qtrle_encode_init
(
AVCodecContext
*
avctx
)
{
QtrleEncContext
*
s
=
avctx
->
priv_data
;
...
...
@@ -101,7 +113,13 @@ static av_cold int qtrle_encode_init(AVCodecContext *avctx)
+
15
/* header + footer */
+
s
->
avctx
->
height
*
2
/* skip code+rle end */
+
s
->
avctx
->
width
/
MAX_RLE_BULK
+
1
/* rle codes */
;
avctx
->
coded_frame
=
&
s
->
frame
;
avctx
->
coded_frame
=
av_frame_alloc
();
if
(
!
avctx
->
coded_frame
)
{
qtrle_encode_end
(
avctx
);
return
AVERROR
(
ENOMEM
);
}
return
0
;
}
...
...
@@ -141,7 +159,7 @@ static void qtrle_encode_line(QtrleEncContext *s, const AVFrame *p, int line, ui
for
(
i
=
width
-
1
;
i
>=
0
;
i
--
)
{
if
(
!
s
->
frame
.
key_frame
&&
!
memcmp
(
this_line
,
prev_line
,
s
->
pixel_size
))
if
(
!
s
->
avctx
->
coded_frame
->
key_frame
&&
!
memcmp
(
this_line
,
prev_line
,
s
->
pixel_size
))
skipcount
=
FFMIN
(
skipcount
+
1
,
MAX_RLE_SKIP
);
else
skipcount
=
0
;
...
...
@@ -245,7 +263,7 @@ static int encode_frame(QtrleEncContext *s, const AVFrame *p, uint8_t *buf)
int
end_line
=
s
->
avctx
->
height
;
uint8_t
*
orig_buf
=
buf
;
if
(
!
s
->
frame
.
key_frame
)
{
if
(
!
s
->
avctx
->
coded_frame
->
key_frame
)
{
unsigned
line_size
=
s
->
avctx
->
width
*
s
->
pixel_size
;
for
(
start_line
=
0
;
start_line
<
s
->
avctx
->
height
;
start_line
++
)
if
(
memcmp
(
p
->
data
[
0
]
+
start_line
*
p
->
linesize
[
0
],
...
...
@@ -283,11 +301,9 @@ static int qtrle_encode_frame(AVCodecContext *avctx, AVPacket *pkt,
const
AVFrame
*
pict
,
int
*
got_packet
)
{
QtrleEncContext
*
const
s
=
avctx
->
priv_data
;
AVFrame
*
const
p
=
&
s
->
frame
;
AVFrame
*
const
p
=
avctx
->
coded_
frame
;
int
ret
;
*
p
=
*
pict
;
if
((
ret
=
ff_alloc_packet
(
pkt
,
s
->
max_buf_size
))
<
0
)
{
/* Upper bound check for compressed data */
av_log
(
avctx
,
AV_LOG_ERROR
,
"Error getting output packet of size %d.
\n
"
,
s
->
max_buf_size
);
...
...
@@ -307,7 +323,8 @@ static int qtrle_encode_frame(AVCodecContext *avctx, AVPacket *pkt,
pkt
->
size
=
encode_frame
(
s
,
pict
,
pkt
->
data
);
/* save the current frame */
av_picture_copy
(
&
s
->
previous_frame
,
(
AVPicture
*
)
p
,
avctx
->
pix_fmt
,
avctx
->
width
,
avctx
->
height
);
av_picture_copy
(
&
s
->
previous_frame
,
(
const
AVPicture
*
)
pict
,
avctx
->
pix_fmt
,
avctx
->
width
,
avctx
->
height
);
if
(
p
->
key_frame
)
pkt
->
flags
|=
AV_PKT_FLAG_KEY
;
...
...
@@ -316,17 +333,6 @@ static int qtrle_encode_frame(AVCodecContext *avctx, AVPacket *pkt,
return
0
;
}
static
av_cold
int
qtrle_encode_end
(
AVCodecContext
*
avctx
)
{
QtrleEncContext
*
s
=
avctx
->
priv_data
;
avpicture_free
(
&
s
->
previous_frame
);
av_free
(
s
->
rlecode_table
);
av_free
(
s
->
length_table
);
av_free
(
s
->
skip_table
);
return
0
;
}
AVCodec
ff_qtrle_encoder
=
{
.
name
=
"qtrle"
,
.
long_name
=
NULL_IF_CONFIG_SMALL
(
"QuickTime Animation (RLE) video"
),
...
...
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