Hi!

Attached patch fixes timestamps and duration for atrac_3_lossless_132kbps.aa3 
from ticket #5334, the only Atrac 3 lossless sample I have.

Please comment, Carl Eugen
From d1a22a151cc02fc475710c20576ecbed7c66aeac Mon Sep 17 00:00:00 2001
From: Carl Eugen Hoyos <ceho...@ag.or.at>
Date: Sat, 11 Feb 2017 13:51:12 +0100
Subject: [PATCH] lavf/omadec: Fix timestamps for Atrac 3 lossless.

---
 libavformat/omadec.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/libavformat/omadec.c b/libavformat/omadec.c
index 076da78..96fdeea 100644
--- a/libavformat/omadec.c
+++ b/libavformat/omadec.c
@@ -501,7 +501,7 @@ static int oma_read_header(AVFormatContext *s)
         st->codecpar->channels    = 2;
         st->codecpar->channel_layout = AV_CH_LAYOUT_STEREO;
         st->codecpar->sample_rate = 44100;
-        avpriv_set_pts_info(st, 64, 1, 44100);
+        avpriv_set_pts_info(st, 64, 1, 44100 * st->codecpar->channels);
         oc->read_packet = aal_read_packet;
         framesize = 4096;
         break;
-- 
1.7.10.4

_______________________________________________
ffmpeg-devel mailing list
ffmpeg-devel@ffmpeg.org
http://ffmpeg.org/mailman/listinfo/ffmpeg-devel

Reply via email to