]> git.sesse.net Git - ffmpeg/commitdiff
lavd/alsa: set frame_size field.
authorNicolas George <george@nsup.org>
Mon, 16 Feb 2015 20:52:03 +0000 (21:52 +0100)
committerNicolas George <george@nsup.org>
Thu, 26 Feb 2015 18:19:56 +0000 (19:19 +0100)
The value tells the typical size of a packet from the demuxer.

libavdevice/alsa-audio-dec.c

index 7f8f8cdd59393edafa574adb25b77dc500621057..efa674767864484cf1cff720318b93d514a9cd8f 100644 (file)
@@ -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,