You've already forked FFmpeg
mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-08-10 06:10:52 +02:00
avcodec/pcm: allow Changing parameters
SDR needs this for switching between mono and stereo stations Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
This commit is contained in:
@@ -578,7 +578,7 @@ const FFCodec ff_ ## name_ ## _decoder = { \
|
|||||||
.priv_data_size = sizeof(PCMDecode), \
|
.priv_data_size = sizeof(PCMDecode), \
|
||||||
.init = pcm_decode_init, \
|
.init = pcm_decode_init, \
|
||||||
FF_CODEC_DECODE_CB(pcm_decode_frame), \
|
FF_CODEC_DECODE_CB(pcm_decode_frame), \
|
||||||
.p.capabilities = AV_CODEC_CAP_DR1, \
|
.p.capabilities = AV_CODEC_CAP_DR1 | AV_CODEC_CAP_PARAM_CHANGE, \
|
||||||
.p.sample_fmts = (const enum AVSampleFormat[]){ sample_fmt_, \
|
.p.sample_fmts = (const enum AVSampleFormat[]){ sample_fmt_, \
|
||||||
AV_SAMPLE_FMT_NONE }, \
|
AV_SAMPLE_FMT_NONE }, \
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user