mirror of
https://git.ffmpeg.org/ffmpeg.git
synced 2025-04-01 22:49:21 +00:00
mpegaudio parser: set duration instead of frame_size
This commit is contained in:
parent
16e54ac725
commit
7575ffac8a
@ -77,7 +77,7 @@ static int mpegaudio_parse(AVCodecParserContext *s1,
|
|||||||
if(s->header_count > 1){
|
if(s->header_count > 1){
|
||||||
avctx->sample_rate= sr;
|
avctx->sample_rate= sr;
|
||||||
avctx->channels = channels;
|
avctx->channels = channels;
|
||||||
avctx->frame_size = frame_size;
|
s1->duration = frame_size;
|
||||||
avctx->bit_rate = bit_rate;
|
avctx->bit_rate = bit_rate;
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
|
Loading…
Reference in New Issue
Block a user