diff options
author | Justin Ruggles <justin.ruggles@gmail.com> | 2007-12-28 03:12:24 +0000 |
---|---|---|
committer | Justin Ruggles <justin.ruggles@gmail.com> | 2007-12-28 03:12:24 +0000 |
commit | c135b520e73853b2878f2e164c16521743c629c9 (patch) | |
tree | 1a44eb78e97ab10663ab0fcc5e4a598c59e63c4d | |
parent | 678a7179b6f6134d537a33384ef9f13966dcdaec (diff) | |
download | ffmpeg-c135b520e73853b2878f2e164c16521743c629c9.tar.gz |
Do not give advice for which bitrate to choose.
Originally committed as revision 11334 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r-- | libavcodec/ac3enc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/ac3enc.c b/libavcodec/ac3enc.c index 956bdb371b..d90df530ff 100644 --- a/libavcodec/ac3enc.c +++ b/libavcodec/ac3enc.c @@ -573,7 +573,7 @@ static int compute_bit_allocation(AC3EncodeContext *s, bit_alloc(s, mask, psd, bap, frame_bits, coarse_snr_offset, 0) < 0) coarse_snr_offset -= SNR_INC1; if (coarse_snr_offset < 0) { - av_log(NULL, AV_LOG_ERROR, "Bit allocation failed, try increasing the bitrate, -ab 384k for example!\n"); + av_log(NULL, AV_LOG_ERROR, "Bit allocation failed. Try increasing the bitrate.\n"); return -1; } while ((coarse_snr_offset + SNR_INC1) <= 63 && |