diff options
author | Nicolas George <nicolas.george@normalesup.org> | 2012-07-04 12:42:48 +0200 |
---|---|---|
committer | Nicolas George <nicolas.george@normalesup.org> | 2012-07-04 15:33:14 +0200 |
commit | aa39516a04f7a7b91bf03e0fad0afce41acd1de1 (patch) | |
tree | 26311c562550b4a192cd5f64ded90a20435cf156 /libavutil/error.c | |
parent | ab2356cb796c531d722558f3e64896f955a0de40 (diff) | |
download | ffmpeg-aa39516a04f7a7b91bf03e0fad0afce41acd1de1.tar.gz |
error: define AVERROR_BUFFER_TOO_SMALL.
Some API require a buffer and return a specific error
if it is too small. This error code helps to map codes.
Diffstat (limited to 'libavutil/error.c')
-rw-r--r-- | libavutil/error.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libavutil/error.c b/libavutil/error.c index cd31e66340..71856a1d57 100644 --- a/libavutil/error.c +++ b/libavutil/error.c @@ -31,6 +31,7 @@ struct error_entry error_entries[] = { { 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" }, + { ERROR_TAG(BUFFER_TOO_SMALL), "Buffer too small" }, { ERROR_TAG(DECODER_NOT_FOUND), "Decoder not found" }, { ERROR_TAG(DEMUXER_NOT_FOUND), "Demuxer not found" }, { ERROR_TAG(ENCODER_NOT_FOUND), "Encoder not found" }, |