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
24d9b0c2
Commit
24d9b0c2
authored
Apr 08, 2017
by
Paul B Mahol
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
avcodec/cllc: add support for frame threads
Signed-off-by:
Paul B Mahol
<
onemda@gmail.com
>
parent
3408f466
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
20 additions
and
4 deletions
+20
-4
cllc.c
libavcodec/cllc.c
+20
-4
No files found.
libavcodec/cllc.c
View file @
24d9b0c2
...
...
@@ -28,6 +28,7 @@
#include "get_bits.h"
#include "avcodec.h"
#include "internal.h"
#include "thread.h"
typedef
struct
CLLCContext
{
AVCodecContext
*
avctx
;
...
...
@@ -357,6 +358,7 @@ static int cllc_decode_frame(AVCodecContext *avctx, void *data,
{
CLLCContext
*
ctx
=
avctx
->
priv_data
;
AVFrame
*
pic
=
data
;
ThreadFrame
frame
=
{
.
f
=
data
};
uint8_t
*
src
=
avpkt
->
data
;
uint32_t
info_tag
,
info_offset
;
int
data_size
;
...
...
@@ -417,7 +419,7 @@ static int cllc_decode_frame(AVCodecContext *avctx, void *data,
avctx
->
pix_fmt
=
AV_PIX_FMT_YUV422P
;
avctx
->
bits_per_raw_sample
=
8
;
if
((
ret
=
ff_
get_buffer
(
avctx
,
pic
,
0
))
<
0
)
if
((
ret
=
ff_
thread_get_buffer
(
avctx
,
&
frame
,
0
))
<
0
)
return
ret
;
ret
=
decode_yuv_frame
(
ctx
,
&
gb
,
pic
);
...
...
@@ -430,7 +432,7 @@ static int cllc_decode_frame(AVCodecContext *avctx, void *data,
avctx
->
pix_fmt
=
AV_PIX_FMT_RGB24
;
avctx
->
bits_per_raw_sample
=
8
;
if
((
ret
=
ff_
get_buffer
(
avctx
,
pic
,
0
))
<
0
)
if
((
ret
=
ff_
thread_get_buffer
(
avctx
,
&
frame
,
0
))
<
0
)
return
ret
;
ret
=
decode_rgb24_frame
(
ctx
,
&
gb
,
pic
);
...
...
@@ -442,7 +444,7 @@ static int cllc_decode_frame(AVCodecContext *avctx, void *data,
avctx
->
pix_fmt
=
AV_PIX_FMT_ARGB
;
avctx
->
bits_per_raw_sample
=
8
;
if
((
ret
=
ff_
get_buffer
(
avctx
,
pic
,
0
))
<
0
)
if
((
ret
=
ff_
thread_get_buffer
(
avctx
,
&
frame
,
0
))
<
0
)
return
ret
;
ret
=
decode_argb_frame
(
ctx
,
&
gb
,
pic
);
...
...
@@ -463,6 +465,19 @@ static int cllc_decode_frame(AVCodecContext *avctx, void *data,
return
avpkt
->
size
;
}
#if HAVE_THREADS
static
int
cllc_init_thread_copy
(
AVCodecContext
*
avctx
)
{
CLLCContext
*
ctx
=
avctx
->
priv_data
;
ctx
->
avctx
=
avctx
;
ctx
->
swapped_buf
=
NULL
;
ctx
->
swapped_buf_size
=
0
;
return
0
;
}
#endif
static
av_cold
int
cllc_decode_close
(
AVCodecContext
*
avctx
)
{
CLLCContext
*
ctx
=
avctx
->
priv_data
;
...
...
@@ -493,8 +508,9 @@ AVCodec ff_cllc_decoder = {
.
id
=
AV_CODEC_ID_CLLC
,
.
priv_data_size
=
sizeof
(
CLLCContext
),
.
init
=
cllc_decode_init
,
.
init_thread_copy
=
ONLY_IF_THREADS_ENABLED
(
cllc_init_thread_copy
),
.
decode
=
cllc_decode_frame
,
.
close
=
cllc_decode_close
,
.
capabilities
=
AV_CODEC_CAP_DR1
,
.
capabilities
=
AV_CODEC_CAP_DR1
|
AV_CODEC_CAP_FRAME_THREADS
,
.
caps_internal
=
FF_CODEC_CAP_INIT_THREADSAFE
,
};
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