[FFmpeg-devel] [RFC/PATCH]lavf/omadec: Fix timestamps for Atrac 3 lossless
Carl Eugen Hoyos
cehoyos at ag.or.at
Sat Feb 11 14:55:05 EET 2017
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
-------------- next part --------------
From d1a22a151cc02fc475710c20576ecbed7c66aeac Mon Sep 17 00:00:00 2001
From: Carl Eugen Hoyos <cehoyos at 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
More information about the ffmpeg-devel
mailing list