diff mbox series

[FFmpeg-devel,1/2] avformat/mov: Update bits_per_coded_sample after read pcmC

Message ID tencent_51127EB6AF523895C39DB6BC6A120085690A@qq.com
State Accepted
Commit b56b343e43e595c62f204d5797d33645f4c46d96
Headers show
Series [FFmpeg-devel,1/2] avformat/mov: Update bits_per_coded_sample after read pcmC | expand

Checks

Context Check Description
yinshiyou/make_loongarch64 success Make finished
yinshiyou/make_fate_loongarch64 success Make fate finished
andriy/make_x86 success Make finished
andriy/make_fate_x86 success Make fate finished

Commit Message

Zhao Zhili Feb. 22, 2024, 9:37 a.m. UTC
From: Zhao Zhili <zhilizhao@tencent.com>

Fix #10878
---
 libavformat/mov.c | 1 +
 1 file changed, 1 insertion(+)
diff mbox series

Patch

diff --git a/libavformat/mov.c b/libavformat/mov.c
index 1a1b104615..8c03c35c13 100644
--- a/libavformat/mov.c
+++ b/libavformat/mov.c
@@ -1890,6 +1890,7 @@  static int mov_read_pcmc(MOVContext *c, AVIOContext *pb, MOVAtom atom)
 
     if (format_flags & 1) // indicates little-endian format. If not present, big-endian format is used
         set_last_stream_little_endian(c->fc);
+    st->codecpar->bits_per_coded_sample = av_get_bits_per_sample(st->codecpar->codec_id);
 
     return 0;
 }