From 9c0edaaf1359b4eeb26870c74c3a00dfd026de67 Mon Sep 17 00:00:00 2001 From: Ramiro Polla Date: Mon, 13 Aug 2007 22:55:44 +0000 Subject: Use AVERROR_PATCHWELCOME instead of AVERROR(ENOTSUP) Originally committed as revision 10111 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavformat/vocenc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'libavformat/vocenc.c') diff --git a/libavformat/vocenc.c b/libavformat/vocenc.c index 988533d061..ae1ef90ed8 100644 --- a/libavformat/vocenc.c +++ b/libavformat/vocenc.c @@ -34,7 +34,7 @@ static int voc_write_header(AVFormatContext *s) 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); -- cgit v1.2.3