[FFmpeg-cvslog] avcodec/pcm: allow Changing parameters
Michael Niedermayer
git at videolan.org
Mon Oct 30 02:10:17 EET 2023
ffmpeg | branch: release/5.1 | Michael Niedermayer <michael at niedermayer.cc> | Mon Jun 5 15:56:58 2023 +0200| [1759fd0d82c460ba95c694a9c4f5a60997d154c3] | committer: Michael Niedermayer
avcodec/pcm: allow Changing parameters
SDR needs this for switching between mono and stereo stations
Signed-off-by: Michael Niedermayer <michael at niedermayer.cc>
(cherry picked from commit 94d44dbe212b3ecb67256c4edfc3d7c3c3ac4472)
Signed-off-by: Michael Niedermayer <michael at niedermayer.cc>
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=1759fd0d82c460ba95c694a9c4f5a60997d154c3
---
libavcodec/pcm.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/libavcodec/pcm.c b/libavcodec/pcm.c
index 471075ad71..eb601c4af2 100644
--- a/libavcodec/pcm.c
+++ b/libavcodec/pcm.c
@@ -584,7 +584,7 @@ const FFCodec ff_ ## name_ ## _decoder = { \
.priv_data_size = sizeof(PCMDecode), \
.init = pcm_decode_init, \
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_, \
AV_SAMPLE_FMT_NONE }, \
.caps_internal = FF_CODEC_CAP_INIT_THREADSAFE, \
More information about the ffmpeg-cvslog
mailing list