summaryrefslogtreecommitdiff
path: root/libavcodec/avcodec.h
diff options
context:
space:
mode:
authorBenoit Fouet <benoit.fouet@free.fr>2007-05-10 13:24:05 +0000
committerBenoit Fouet <benoit.fouet@free.fr>2007-05-10 13:24:05 +0000
commit35e7f087bacb52d6fdab42f578a5eee3a87be9b6 (patch)
treee711f861797ef8aa677acb8a7d5fa2b5f8aafb75 /libavcodec/avcodec.h
parent15025553627082053c3a756937185cef13ba37df (diff)
add AVERROR_NOENT
Originally committed as revision 8976 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/avcodec.h')
-rw-r--r--libavcodec/avcodec.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/libavcodec/avcodec.h b/libavcodec/avcodec.h
index 8f9838c0b7..844945cb77 100644
--- a/libavcodec/avcodec.h
+++ b/libavcodec/avcodec.h
@@ -3150,6 +3150,7 @@ extern unsigned int av_xiphlacing(unsigned char *s, unsigned int v);
#define AVERROR_NOMEM AVERROR(ENOMEM) /**< not enough memory */
#define AVERROR_NOFMT AVERROR(EILSEQ) /**< unknown format */
#define AVERROR_NOTSUPP AVERROR(ENOSYS) /**< Operation not supported. */
+#define AVERROR_NOENT AVERROR(ENOENT) /**< No such file or directory. */
#ifdef __cplusplus
}