diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2014-10-10 01:45:34 +0200 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2014-10-10 02:02:11 +0200 |
commit | 9665a0fdf680246468bf3e55524c9b4e610ab506 (patch) | |
tree | 3fe648872b22aa5d6c322329758714cd1af147a9 | |
parent | 233f3ad8698383255fb8766e99647e87a88044fe (diff) | |
download | ffmpeg-9665a0fdf680246468bf3e55524c9b4e610ab506.tar.gz |
avutil/error: Add AVERROR_INPUT_CHANGED & AVERROR_OUTPUT_CHANGED to error_entries[]
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
-rw-r--r-- | libavutil/error.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/libavutil/error.c b/libavutil/error.c index dd1fb307dc..9be78bcf57 100644 --- a/libavutil/error.c +++ b/libavutil/error.c @@ -29,6 +29,7 @@ struct error_entry { }; #define ERROR_TAG(tag) AVERROR_##tag, #tag +#define AVERROR_INPUT_AND_OUTPUT_CHANGED (AVERROR_INPUT_CHANGED | AVERROR_OUTPUT_CHANGED) static const struct error_entry error_entries[] = { { ERROR_TAG(BSF_NOT_FOUND), "Bitstream filter not found" }, { ERROR_TAG(BUG), "Internal bug, should not have happened" }, @@ -41,14 +42,17 @@ static const struct error_entry error_entries[] = { { ERROR_TAG(EXIT), "Immediate exit requested" }, { ERROR_TAG(EXTERNAL), "Generic error in an external library" }, { ERROR_TAG(FILTER_NOT_FOUND), "Filter not found" }, + { ERROR_TAG(INPUT_CHANGED), "Input changed" }, { ERROR_TAG(INVALIDDATA), "Invalid data found when processing input" }, { ERROR_TAG(MUXER_NOT_FOUND), "Muxer not found" }, { ERROR_TAG(OPTION_NOT_FOUND), "Option not found" }, + { ERROR_TAG(OUTPUT_CHANGED), "Output changed" }, { ERROR_TAG(PATCHWELCOME), "Not yet implemented in FFmpeg, patches welcome" }, { ERROR_TAG(PROTOCOL_NOT_FOUND), "Protocol not found" }, { ERROR_TAG(STREAM_NOT_FOUND), "Stream not found" }, { ERROR_TAG(UNKNOWN), "Unknown error occurred" }, { ERROR_TAG(EXPERIMENTAL), "Experimental feature" }, + { ERROR_TAG(INPUT_AND_OUTPUT_CHANGED), "Input and output changed" }, }; int av_strerror(int errnum, char *errbuf, size_t errbuf_size) |