diff mbox series

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

Message ID 5b83443361479c11a5975c8dd308375a0f101e59.1717837373.git.pross@xvid.org
State New
Headers show
Series [FFmpeg-devel,1/4] mm: set audio pts proportionally to audio offset | expand

Checks

Context Check Description
andriy/make_x86 success Make finished
andriy/make_fate_x86 success Make fate finished

Commit Message

Peter Ross June 8, 2024, 9:03 a.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 :