diff options
author | Nicolas George <george@nsup.org> | 2015-02-16 21:52:03 +0100 |
---|---|---|
committer | Nicolas George <george@nsup.org> | 2015-02-26 19:19:56 +0100 |
commit | a92193f247816a45c16c37a2f7db723a0359c24c (patch) | |
tree | c98ef5038b3c57c9b0aa3be108baff32603da339 | |
parent | b9de1303a6414174ab2f3bccefa801bfabcf0f88 (diff) | |
download | ffmpeg-a92193f247816a45c16c37a2f7db723a0359c24c.tar.gz |
lavd/alsa: set frame_size field.
The value tells the typical size of a packet from the demuxer.
-rw-r--r-- | libavdevice/alsa-audio-dec.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libavdevice/alsa-audio-dec.c b/libavdevice/alsa-audio-dec.c index 7f8f8cdd59..efa6747678 100644 --- a/libavdevice/alsa-audio-dec.c +++ b/libavdevice/alsa-audio-dec.c @@ -80,6 +80,7 @@ static av_cold int audio_read_header(AVFormatContext *s1) st->codec->codec_id = codec_id; st->codec->sample_rate = s->sample_rate; st->codec->channels = s->channels; + st->codec->frame_size = s->frame_size; avpriv_set_pts_info(st, 64, 1, 1000000); /* 64 bits pts in us */ /* microseconds instead of seconds, MHz instead of Hz */ s->timefilter = ff_timefilter_new(1000000.0 / s->sample_rate, |