diff options
author | Panagiotis Issaris <takis.issaris@uhasselt.be> | 2007-07-19 15:38:33 +0000 |
---|---|---|
committer | Panagiotis Issaris <takis.issaris@uhasselt.be> | 2007-07-19 15:38:33 +0000 |
commit | 85565db0f8b85dc2bb2df2e788be1918eda3ed04 (patch) | |
tree | e6d75e608a581441da9c3670608093e71d02265c /libavformat/vocenc.c | |
parent | 5632e568c041ee2d6db8d963280b433b3f0c0b80 (diff) | |
download | ffmpeg-85565db0f8b85dc2bb2df2e788be1918eda3ed04.tar.gz |
Replace all occurrences of AVERROR_NOTSUPP with AVERROR(ENOSYS).
Originally committed as revision 9763 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat/vocenc.c')
-rw-r--r-- | libavformat/vocenc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/vocenc.c b/libavformat/vocenc.c index 7ef96bfede..12ca34cac4 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_NOTSUPP; + return AVERROR(ENOSYS); put_buffer(pb, voc_magic, sizeof(voc_magic) - 1); put_le16(pb, header_size); |