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

rfelker subversion
Tue Nov 27 06:32:05 CET 2007


Author: rfelker
Date: Tue Nov 27 06:32:04 2007
New Revision: 11094

Log:
sync message with modern ffmpeg bitrate option syntax.
note: this message should probably be tweaked; i'm not sure that it's
a good idea for lavc to be recommending ffmpeg command line options
as it's a general-purpose library.


Modified:
   trunk/libavcodec/ac3enc.c

Modified: trunk/libavcodec/ac3enc.c
==============================================================================
--- trunk/libavcodec/ac3enc.c	(original)
+++ trunk/libavcodec/ac3enc.c	Tue Nov 27 06:32:04 2007
@@ -573,7 +573,7 @@ static int compute_bit_allocation(AC3Enc
            bit_alloc(s, mask, psd, bap, frame_bits, csnroffst, 0) < 0)
         csnroffst -= SNR_INC1;
     if (csnroffst < 0) {
-        av_log(NULL, AV_LOG_ERROR, "Bit allocation failed, try increasing the bitrate, -ab 384 for example!\n");
+        av_log(NULL, AV_LOG_ERROR, "Bit allocation failed, try increasing the bitrate, -ab 384k for example!\n");
         return -1;
     }
     while ((csnroffst + SNR_INC1) <= 63 &&




More information about the ffmpeg-cvslog mailing list