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
61d900fd
Commit
61d900fd
authored
Jun 06, 2013
by
Paul B Mahol
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
lavc: add ONLY_IF_THREADS_ENABLED where it is missing
Signed-off-by:
Paul B Mahol
<
onemda@gmail.com
>
parent
ffb1051b
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
6 additions
and
6 deletions
+6
-6
alac.c
libavcodec/alac.c
+1
-1
ffv1dec.c
libavcodec/ffv1dec.c
+2
-2
flacdec.c
libavcodec/flacdec.c
+1
-1
takdec.c
libavcodec/takdec.c
+1
-1
tta.c
libavcodec/tta.c
+1
-1
No files found.
libavcodec/alac.c
View file @
61d900fd
...
...
@@ -632,7 +632,7 @@ AVCodec ff_alac_decoder = {
.
init
=
alac_decode_init
,
.
close
=
alac_decode_close
,
.
decode
=
alac_decode_frame
,
.
init_thread_copy
=
init_thread_copy
,
.
init_thread_copy
=
ONLY_IF_THREADS_ENABLED
(
init_thread_copy
)
,
.
capabilities
=
CODEC_CAP_DR1
|
CODEC_CAP_FRAME_THREADS
,
.
long_name
=
NULL_IF_CONFIG_SMALL
(
"ALAC (Apple Lossless Audio Codec)"
),
};
libavcodec/ffv1dec.c
View file @
61d900fd
...
...
@@ -962,8 +962,8 @@ AVCodec ff_ffv1_decoder = {
.
init
=
decode_init
,
.
close
=
ffv1_close
,
.
decode
=
decode_frame
,
.
init_thread_copy
=
init_thread_copy
,
.
update_thread_context
=
update_thread_context
,
.
init_thread_copy
=
ONLY_IF_THREADS_ENABLED
(
init_thread_copy
)
,
.
update_thread_context
=
ONLY_IF_THREADS_ENABLED
(
update_thread_context
)
,
.
capabilities
=
CODEC_CAP_DR1
/*| CODEC_CAP_DRAW_HORIZ_BAND*/
|
CODEC_CAP_FRAME_THREADS
|
CODEC_CAP_SLICE_THREADS
,
.
long_name
=
NULL_IF_CONFIG_SMALL
(
"FFmpeg video codec #1"
),
...
...
libavcodec/flacdec.c
View file @
61d900fd
...
...
@@ -596,7 +596,7 @@ AVCodec ff_flac_decoder = {
.
init
=
flac_decode_init
,
.
close
=
flac_decode_close
,
.
decode
=
flac_decode_frame
,
.
init_thread_copy
=
init_thread_copy
,
.
init_thread_copy
=
ONLY_IF_THREADS_ENABLED
(
init_thread_copy
)
,
.
capabilities
=
CODEC_CAP_DR1
|
CODEC_CAP_FRAME_THREADS
,
.
long_name
=
NULL_IF_CONFIG_SMALL
(
"FLAC (Free Lossless Audio Codec)"
),
.
sample_fmts
=
(
const
enum
AVSampleFormat
[])
{
AV_SAMPLE_FMT_S16
,
...
...
libavcodec/takdec.c
View file @
61d900fd
...
...
@@ -931,7 +931,7 @@ AVCodec ff_tak_decoder = {
.
init
=
tak_decode_init
,
.
close
=
tak_decode_close
,
.
decode
=
tak_decode_frame
,
.
update_thread_context
=
update_thread_context
,
.
update_thread_context
=
ONLY_IF_THREADS_ENABLED
(
update_thread_context
)
,
.
capabilities
=
CODEC_CAP_DR1
|
CODEC_CAP_FRAME_THREADS
,
.
long_name
=
NULL_IF_CONFIG_SMALL
(
"TAK (Tom's lossless Audio Kompressor)"
),
.
sample_fmts
=
(
const
enum
AVSampleFormat
[])
{
AV_SAMPLE_FMT_U8P
,
...
...
libavcodec/tta.c
View file @
61d900fd
...
...
@@ -446,7 +446,7 @@ AVCodec ff_tta_decoder = {
.
init
=
tta_decode_init
,
.
close
=
tta_decode_close
,
.
decode
=
tta_decode_frame
,
.
init_thread_copy
=
init_thread_copy
,
.
init_thread_copy
=
ONLY_IF_THREADS_ENABLED
(
init_thread_copy
)
,
.
capabilities
=
CODEC_CAP_DR1
|
CODEC_CAP_FRAME_THREADS
,
.
long_name
=
NULL_IF_CONFIG_SMALL
(
"TTA (True Audio)"
),
.
priv_class
=
&
tta_decoder_class
,
...
...
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