ffmpeg | branch: master | Michael Niedermayer <michae...@gmx.at> | Fri Oct 10 
01:45:34 2014 +0200| [9665a0fdf680246468bf3e55524c9b4e610ab506] | committer: 
Michael Niedermayer

avutil/error: Add AVERROR_INPUT_CHANGED & AVERROR_OUTPUT_CHANGED to 
error_entries[]

Signed-off-by: Michael Niedermayer <michae...@gmx.at>

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=9665a0fdf680246468bf3e55524c9b4e610ab506
---

 libavutil/error.c |    4 ++++
 1 file changed, 4 insertions(+)

diff --git a/libavutil/error.c b/libavutil/error.c
index dd1fb30..9be78bc 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)

_______________________________________________
ffmpeg-cvslog mailing list
ffmpeg-cvslog@ffmpeg.org
http://ffmpeg.org/mailman/listinfo/ffmpeg-cvslog

Reply via email to