error.c 3.66 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
/*
 * This file is part of FFmpeg.
 *
 * FFmpeg is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Lesser General Public
 * License as published by the Free Software Foundation; either
 * version 2.1 of the License, or (at your option) any later version.
 *
 * FFmpeg is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 * Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public
 * License along with FFmpeg; if not, write to the Free Software
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
 */

19
#undef _GNU_SOURCE
20 21
#include "avutil.h"
#include "avstring.h"
22
#include "common.h"
23

24 25 26 27 28 29 30
struct error_entry {
    int num;
    const char *tag;
    const char *str;
};

#define ERROR_TAG(tag) AVERROR_##tag, #tag
31
static const struct error_entry error_entries[] = {
32 33 34
    { ERROR_TAG(BSF_NOT_FOUND),      "Bitstream filter not found"                     },
    { ERROR_TAG(BUG),                "Internal bug, should not have happened"         },
    { ERROR_TAG(BUG2),               "Internal bug, should not have happened"         },
35
    { ERROR_TAG(BUFFER_TOO_SMALL),   "Buffer too small"                               },
36 37 38 39 40
    { ERROR_TAG(DECODER_NOT_FOUND),  "Decoder not found"                              },
    { ERROR_TAG(DEMUXER_NOT_FOUND),  "Demuxer not found"                              },
    { ERROR_TAG(ENCODER_NOT_FOUND),  "Encoder not found"                              },
    { ERROR_TAG(EOF),                "End of file"                                    },
    { ERROR_TAG(EXIT),               "Immediate exit requested"                       },
41
    { ERROR_TAG(EXTERNAL),           "Generic error in an external library"           },
42 43 44 45 46 47 48 49
    { ERROR_TAG(FILTER_NOT_FOUND),   "Filter not found"                               },
    { 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(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"                         },
50
    { ERROR_TAG(EXPERIMENTAL),       "Experimental feature"                           },
51 52
};

53 54
int av_strerror(int errnum, char *errbuf, size_t errbuf_size)
{
55
    int ret = 0, i;
56
    const struct error_entry *entry = NULL;
57

58 59 60 61 62 63 64 65
    for (i = 0; i < FF_ARRAY_ELEMS(error_entries); i++) {
        if (errnum == error_entries[i].num) {
            entry = &error_entries[i];
            break;
        }
    }
    if (entry) {
        av_strlcpy(errbuf, entry->str, errbuf_size);
66 67
    } else {
#if HAVE_STRERROR_R
68
        ret = AVERROR(strerror_r(AVUNERROR(errnum), errbuf, errbuf_size));
69 70
#else
        ret = -1;
71
#endif
72
        if (ret < 0)
73
            snprintf(errbuf, errbuf_size, "Error number %d occurred", errnum);
74 75 76 77
    }

    return ret;
}
78 79 80 81 82 83 84 85 86 87

#ifdef TEST

#undef printf

int main(void)
{
    int i;

    for (i = 0; i < FF_ARRAY_ELEMS(error_entries); i++) {
88
        const struct error_entry *entry = &error_entries[i];
89
        printf("%d: %s [%s]\n", entry->num, av_err2str(entry->num), entry->tag);
90 91 92
    }

    for (i = 0; i < 256; i++) {
93
        printf("%d: %s\n", -i, av_err2str(-i));
94 95 96 97 98 99
    }

    return 0;
}

#endif /* TEST */