[FFmpeg-cvslog] r10111 - trunk/libavformat/vocenc.c

ramiro subversion
Tue Aug 14 00:55:44 CEST 2007


Author: ramiro
Date: Tue Aug 14 00:55:44 2007
New Revision: 10111

Log:
Use AVERROR_PATCHWELCOME instead of AVERROR(ENOTSUP)

Modified:
   trunk/libavformat/vocenc.c

Modified: trunk/libavformat/vocenc.c
==============================================================================
--- trunk/libavformat/vocenc.c	(original)
+++ trunk/libavformat/vocenc.c	Tue Aug 14 00:55:44 2007
@@ -34,7 +34,7 @@ static int voc_write_header(AVFormatCont
 
     if (s->nb_streams != 1
         || s->streams[0]->codec->codec_type != CODEC_TYPE_AUDIO)
-        return AVERROR(ENOTSUP);
+        return AVERROR_PATCHWELCOME;
 
     put_buffer(pb, voc_magic, sizeof(voc_magic) - 1);
     put_le16(pb, header_size);




More information about the ffmpeg-cvslog mailing list