mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-11-21 10:55:51 +02:00
lavf: Exporting opus pre_skip in AVCodecContext
Opus Pre Skip is exported in AVCodecContext->delay similar to how it is done for matroska. Doing the same for ogg too. Signed-off-by: Vignesh Venkatasubramanian <vigneshv@google.com> Reviewed-by: Nicolas George <george@nsup.org> Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
parent
25010f511c
commit
7f11c530dc
@ -55,6 +55,7 @@ static int opus_header(AVFormatContext *avf, int idx)
|
||||
st->codec->codec_id = AV_CODEC_ID_OPUS;
|
||||
st->codec->channels = AV_RL8 (packet + 9);
|
||||
priv->pre_skip = AV_RL16(packet + 10);
|
||||
st->codec->delay = priv->pre_skip;
|
||||
/*orig_sample_rate = AV_RL32(packet + 12);*/
|
||||
/*gain = AV_RL16(packet + 16);*/
|
||||
/*channel_map = AV_RL8 (packet + 18);*/
|
||||
|
Loading…
Reference in New Issue
Block a user