diff options
author | Ramiro Polla <ramiro.polla@gmail.com> | 2007-08-13 22:55:04 +0000 |
---|---|---|
committer | Ramiro Polla <ramiro.polla@gmail.com> | 2007-08-13 22:55:04 +0000 |
commit | f3a3c72e3c64551e25d160b3495e633360dbc5a9 (patch) | |
tree | b78d51a67e227403be76a2ffc7bc56200d8cd17d | |
parent | a92b819a2d9e097d3c3f3fc756e6c8f0a5152b53 (diff) | |
download | ffmpeg-f3a3c72e3c64551e25d160b3495e633360dbc5a9.tar.gz |
Introduce AVERROR_PATCHWELCOME
Originally committed as revision 10110 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r-- | libavcodec/avcodec.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libavcodec/avcodec.h b/libavcodec/avcodec.h index b9e9a20954..1719b027c1 100644 --- a/libavcodec/avcodec.h +++ b/libavcodec/avcodec.h @@ -2943,5 +2943,6 @@ int av_parse_video_frame_rate(AVRational *frame_rate, const char *str); #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. */ +#define AVERROR_PATCHWELCOME -MKTAG('P','A','W','E') /**< Not yet implemented in FFmpeg. Patches welcome. */ #endif /* AVCODEC_H */ |