[FFmpeg-devel] [PATCH 1/6] avutil/error: Add HTTP 429 Too Many Requests AVERROR code
Andreas Rheinhardt
andreas.rheinhardt at outlook.com
Mon Apr 15 19:31:23 EEST 2024
Derek Buitenhuis:
> This is a common error code from e.g. CDNs or cloud storage, and
> it is useful to be able to handle it differently to a generic
> 4XX code.
>
> Its source is RFC6585.
>
> Signed-off-by: Derek Buitenhuis <derek.buitenhuis at gmail.com>
> ---
> libavutil/error.h | 1 +
> libavutil/version.h | 2 +-
> 2 files changed, 2 insertions(+), 1 deletion(-)
>
> diff --git a/libavutil/error.h b/libavutil/error.h
> index 0d3269aa6d..1efa86c4c1 100644
> --- a/libavutil/error.h
> +++ b/libavutil/error.h
> @@ -79,6 +79,7 @@
> #define AVERROR_HTTP_UNAUTHORIZED FFERRTAG(0xF8,'4','0','1')
> #define AVERROR_HTTP_FORBIDDEN FFERRTAG(0xF8,'4','0','3')
> #define AVERROR_HTTP_NOT_FOUND FFERRTAG(0xF8,'4','0','4')
> +#define AVERROR_HTTP_TOO_MANY_REQUESTS FFERRTAG(0xF8,'4','2','9')
> #define AVERROR_HTTP_OTHER_4XX FFERRTAG(0xF8,'4','X','X')
> #define AVERROR_HTTP_SERVER_ERROR FFERRTAG(0xF8,'5','X','X')
>
> diff --git a/libavutil/version.h b/libavutil/version.h
> index 1f2bddc022..5de2d92146 100644
> --- a/libavutil/version.h
> +++ b/libavutil/version.h
> @@ -80,7 +80,7 @@
>
> #define LIBAVUTIL_VERSION_MAJOR 59
> #define LIBAVUTIL_VERSION_MINOR 15
> -#define LIBAVUTIL_VERSION_MICRO 100
> +#define LIBAVUTIL_VERSION_MICRO 101
>
> #define LIBAVUTIL_VERSION_INT AV_VERSION_INT(LIBAVUTIL_VERSION_MAJOR, \
> LIBAVUTIL_VERSION_MINOR, \
Wouldn't you need to add a new entry to error_entries in error.c for this?
- Andreas
More information about the ffmpeg-devel
mailing list