summaryrefslogtreecommitdiffstats
path: root/libmpcodecs
diff options
context:
space:
mode:
authorUoti Urpala <uau@glyph.nonexistent.invalid>2010-01-31 20:16:19 +0200
committerUoti Urpala <uau@glyph.nonexistent.invalid>2010-01-31 20:16:19 +0200
commit9118a5dd02c365e51a9f49dd34469dd7c26b89c7 (patch)
treee49a35b0ed3a274c36ddd8479f2cb5afbbc8dc51 /libmpcodecs
parent1872284cdc75c6239e7739246d514c19684e5d85 (diff)
downloadmpv-9118a5dd02c365e51a9f49dd34469dd7c26b89c7.tar.bz2
mpv-9118a5dd02c365e51a9f49dd34469dd7c26b89c7.tar.xz
ad_faad: move message "input bitrate missing" to MSGL_V
The input bitrate isn't needed for anything in normal playback, so there is no reason to print a warning message for practically all files using the decoder.
Diffstat (limited to 'libmpcodecs')
-rw-r--r--libmpcodecs/ad_faad.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libmpcodecs/ad_faad.c b/libmpcodecs/ad_faad.c
index 7c283641e4..f3795058ff 100644
--- a/libmpcodecs/ad_faad.c
+++ b/libmpcodecs/ad_faad.c
@@ -174,7 +174,7 @@ static int init(sh_audio_t *sh)
sh->samplesize=2;
//sh->o_bps = sh->samplesize*faac_channels*faac_samplerate;
if(!sh->i_bps) {
- mp_msg(MSGT_DECAUDIO,MSGL_WARN,"FAAD: compressed input bitrate missing, assuming 128kbit/s!\n");
+ mp_msg(MSGT_DECAUDIO, MSGL_V, "FAAD: compressed input bitrate missing, assuming 128kbit/s!\n");
sh->i_bps = 128*1000/8; // XXX: HACK!!! ::atmos
} else
mp_msg(MSGT_DECAUDIO,MSGL_V,"FAAD: got %dkbit/s bitrate from MP4 header!\n",sh->i_bps*8/1000);