diff options
author | Stefano Sabatini <stefano.sabatini-lala@poste.it> | 2010-03-19 23:34:34 +0000 |
---|---|---|
committer | Stefano Sabatini <stefano.sabatini-lala@poste.it> | 2010-03-19 23:34:34 +0000 |
commit | 00291565895c1c764ac6a36ef221fcef0046220f (patch) | |
tree | 7c336ec38506d3f5ff7460660603070adeade313 /libavutil/error.h | |
parent | 9a9509e6eeac6c0b8b7ca7a60ccb712ed4960566 (diff) | |
download | ffmpeg-00291565895c1c764ac6a36ef221fcef0046220f.tar.gz |
Extend description for AVERROR_INVALIDDATA.
Originally committed as revision 22600 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavutil/error.h')
-rw-r--r-- | libavutil/error.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavutil/error.h b/libavutil/error.h index 02dbc6a73d..b99c9aa765 100644 --- a/libavutil/error.h +++ b/libavutil/error.h @@ -46,7 +46,7 @@ #endif #define AVERROR_EOF AVERROR(EPIPE) /**< End of file. */ -#define AVERROR_INVALIDDATA AVERROR(EINVAL) /**< invalid data found */ +#define AVERROR_INVALIDDATA AVERROR(EINVAL) /**< Invalid data found when processing input */ #define AVERROR_NOFMT AVERROR(EILSEQ) /**< unknown format */ #define AVERROR_NOTSUPP AVERROR(ENOSYS) /**< Operation not supported. */ |