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
3f887440
Commit
3f887440
authored
Dec 17, 2017
by
Aurelien Jacobs
Committed by
Rostislav Pehlivanov
Dec 18, 2017
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
aptx: add codec cap SMALL_LAST_FRAME and INIT_THREADSAFE as appropriate
parent
9dcecbf0
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
0 deletions
+3
-0
aptx.c
libavcodec/aptx.c
+3
-0
No files found.
libavcodec/aptx.c
View file @
3f887440
...
...
@@ -836,6 +836,7 @@ AVCodec ff_aptx_decoder = {
.
decode
=
aptx_decode_frame
,
.
close
=
aptx_close
,
.
capabilities
=
AV_CODEC_CAP_DR1
,
.
caps_internal
=
FF_CODEC_CAP_INIT_THREADSAFE
,
.
channel_layouts
=
(
const
uint64_t
[])
{
AV_CH_LAYOUT_STEREO
,
0
},
.
sample_fmts
=
(
const
enum
AVSampleFormat
[])
{
AV_SAMPLE_FMT_S32P
,
AV_SAMPLE_FMT_NONE
},
...
...
@@ -852,6 +853,8 @@ AVCodec ff_aptx_encoder = {
.
init
=
aptx_init
,
.
encode2
=
aptx_encode_frame
,
.
close
=
aptx_close
,
.
capabilities
=
AV_CODEC_CAP_SMALL_LAST_FRAME
,
.
caps_internal
=
FF_CODEC_CAP_INIT_THREADSAFE
,
.
channel_layouts
=
(
const
uint64_t
[])
{
AV_CH_LAYOUT_STEREO
,
0
},
.
sample_fmts
=
(
const
enum
AVSampleFormat
[])
{
AV_SAMPLE_FMT_S32P
,
AV_SAMPLE_FMT_NONE
},
...
...
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