[Ffmpeg-cvslog] r6511 - trunk/libavcodec/vorbis_enc.c

ods15 subversion
Mon Oct 2 08:09:37 CEST 2006


Author: ods15
Date: Mon Oct  2 08:09:36 2006
New Revision: 6511

Modified:
   trunk/libavcodec/vorbis_enc.c

Log:
Original Commit: r107 | ods15 | 2006-10-01 18:13:12 +0200 (Sun, 01 Oct 2006) | 2 lines

give proper error message for channels!=2

Modified: trunk/libavcodec/vorbis_enc.c
==============================================================================
--- trunk/libavcodec/vorbis_enc.c	(original)
+++ trunk/libavcodec/vorbis_enc.c	Mon Oct  2 08:09:36 2006
@@ -1362,7 +1362,10 @@
 {
     venc_context_t * venc = avccontext->priv_data;
 
-    if (avccontext->channels != 2) return -1;
+    if (avccontext->channels != 2) {
+        av_log(avccontext, AV_LOG_ERROR, "Current FFmpeg Vorbis encoder only supports 2 channels.\n");
+        return -1;
+    }
 
     create_vorbis_context(venc, avccontext);
 




More information about the ffmpeg-cvslog mailing list