You've already forked FFmpeg
mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-08-15 14:13:16 +02:00
omadec: fix bitrate for ATRAC3+ streams
Signed-off-by: Anton Khirnov <anton@khirnov.net>
This commit is contained in:
committed by
Anton Khirnov
parent
23d0fdcf6f
commit
487b54104a
@@ -379,7 +379,7 @@ static int oma_read_header(AVFormatContext *s)
|
|||||||
return AVERROR_INVALIDDATA;
|
return AVERROR_INVALIDDATA;
|
||||||
}
|
}
|
||||||
st->codec->sample_rate = samplerate;
|
st->codec->sample_rate = samplerate;
|
||||||
st->codec->bit_rate = samplerate * framesize * 8 / 1024;
|
st->codec->bit_rate = samplerate * framesize * 8 / 2048;
|
||||||
avpriv_set_pts_info(st, 64, 1, samplerate);
|
avpriv_set_pts_info(st, 64, 1, samplerate);
|
||||||
av_log(s, AV_LOG_ERROR, "Unsupported codec ATRAC3+!\n");
|
av_log(s, AV_LOG_ERROR, "Unsupported codec ATRAC3+!\n");
|
||||||
break;
|
break;
|
||||||
|
Reference in New Issue
Block a user