mirror of https://git.ffmpeg.org/ffmpeg.git
aptx: add codec cap SMALL_LAST_FRAME and INIT_THREADSAFE as appropriate
This commit is contained in:
parent
9dcecbf04c
commit
3f88744067
|
@ -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 },
|
||||
|
|
Loading…
Reference in New Issue