OSDN Git Service

au: set bit rate
authorJustin Ruggles <justin.ruggles@gmail.com>
Sun, 23 Dec 2012 18:19:31 +0000 (13:19 -0500)
committerJustin Ruggles <justin.ruggles@gmail.com>
Wed, 9 Jan 2013 16:52:56 +0000 (11:52 -0500)
libavformat/au.c

index 5499c6b..f1038da 100644 (file)
@@ -111,6 +111,7 @@ static int au_read_header(AVFormatContext *s)
     st->codec->codec_id = codec;
     st->codec->channels = channels;
     st->codec->sample_rate = rate;
+    st->codec->bit_rate    = channels * rate * bps;
     avpriv_set_pts_info(st, 64, 1, rate);
     return 0;
 }