From 9c0edaaf1359b4eeb26870c74c3a00dfd026de67 Mon Sep 17 00:00:00 2001
From: Ramiro Polla <ramiro.polla@gmail.com>
Date: Mon, 13 Aug 2007 22:55:44 +0000
Subject: [PATCH] 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(-)

diff --git a/libavformat/vocenc.c b/libavformat/vocenc.c
index 988533d0610..ae1ef90ed85 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);
-- 
GitLab