[FFmpeg-cvslog] r11334 - trunk/libavcodec/ac3enc.c

jbr subversion
Fri Dec 28 04:12:28 CET 2007


Author: jbr
Date: Fri Dec 28 04:12:24 2007
New Revision: 11334

Log:
Do not give advice for which bitrate to choose.

Modified:
   trunk/libavcodec/ac3enc.c

Modified: trunk/libavcodec/ac3enc.c
==============================================================================
--- trunk/libavcodec/ac3enc.c	(original)
+++ trunk/libavcodec/ac3enc.c	Fri Dec 28 04:12:24 2007
@@ -573,7 +573,7 @@ static int compute_bit_allocation(AC3Enc
            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 &&




More information about the ffmpeg-cvslog mailing list