projects
/
ffmpeg.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
3f98848
)
au: set bit rate
author
Justin Ruggles
<justin.ruggles@gmail.com>
Sun, 23 Dec 2012 18:19:31 +0000
(13:19 -0500)
committer
Justin Ruggles
<justin.ruggles@gmail.com>
Wed, 9 Jan 2013 16:52:56 +0000
(11:52 -0500)
libavformat/au.c
patch
|
blob
|
history
diff --git
a/libavformat/au.c
b/libavformat/au.c
index
5499c6b
..
f1038da
100644
(file)
--- a/
libavformat/au.c
+++ b/
libavformat/au.c
@@
-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;
}