diff mbox series

[FFmpeg-devel,PATCHv2,1/4] avcodec/mm: set audio pts proportionally to audio offset

Message ID 5062735ea3804e138da9ebd1d753c6bf4ec334b2.1719439673.git.pross@xvid.org
State New
Headers show
Series [FFmpeg-devel,PATCHv2,1/4] avcodec/mm: set audio pts proportionally to audio offset | 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

Peter Ross June 26, 2024, 10:08 p.m. UTC
---
 libavformat/mm.c | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)
diff mbox series

Patch

diff --git a/libavformat/mm.c b/libavformat/mm.c
index 23c025d852..a40b5c44bb 100644
--- a/libavformat/mm.c
+++ b/libavformat/mm.c
@@ -180,7 +180,8 @@  static int read_packet(AVFormatContext *s,
             if ((ret = av_get_packet(s->pb, pkt, length)) < 0)
                 return ret;
             pkt->stream_index = 1;
-            pkt->pts = mm->audio_pts++;
+            pkt->pts = mm->audio_pts;
+            mm->audio_pts += length;
             return 0;
 
         default :