[FFmpeg-cvslog] avutil/error: list most common error code in error_entries when strerror_r () is unavailable

Michael Niedermayer git at videolan.org
Tue Feb 10 23:14:30 CET 2015


ffmpeg | branch: master | Michael Niedermayer <michaelni at gmx.at> | Tue Feb 10 22:51:17 2015 +0100| [133d81535d39ab973cfb89c29c8c6a4d771f154f] | committer: Michael Niedermayer

avutil/error: list most common error code in error_entries when strerror_r() is unavailable

Fixes Ticket4267

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

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

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

diff --git a/libavutil/error.c b/libavutil/error.c
index d2868ac..4425968 100644
--- a/libavutil/error.c
+++ b/libavutil/error.c
@@ -29,6 +29,7 @@ struct error_entry {
 };
 
 #define ERROR_TAG(tag) AVERROR_##tag, #tag
+#define EERROR_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"                     },
@@ -59,6 +60,9 @@ static const struct error_entry error_entries[] = {
     { ERROR_TAG(HTTP_NOT_FOUND),     "Server returned 404 Not Found"           },
     { ERROR_TAG(HTTP_OTHER_4XX),     "Server returned 4XX Client Error, but not one of 40{0,1,3,4}" },
     { ERROR_TAG(HTTP_SERVER_ERROR),  "Server returned 5XX Server Error reply" },
+#if !HAVE_STRERROR_R
+    { EERROR_TAG(EINVAL),            "Invalid argument" },
+#endif
 };
 
 int av_strerror(int errnum, char *errbuf, size_t errbuf_size)



More information about the ffmpeg-cvslog mailing list