On 06/12/15 11:02, Anton Khirnov wrote:
> EOVERFLOW seems to be unavailable on certain platforms.
> ---
>  libavcodec/avpacket.c | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/libavcodec/avpacket.c b/libavcodec/avpacket.c
> index f8268b9..87454d5 100644
> --- a/libavcodec/avpacket.c
> +++ b/libavcodec/avpacket.c
> @@ -243,7 +243,7 @@ int av_packet_add_side_data(AVPacket *pkt, enum 
> AVPacketSideDataType type,
>      int elems = pkt->side_data_elems;
>  
>      if ((unsigned)elems + 1 > INT_MAX / sizeof(*pkt->side_data))
> -        return AVERROR(EOVERFLOW);
> +        return AVERROR(ERANGE);
>  
>      pkt->side_data = av_realloc(pkt->side_data,
>                                  (elems + 1) * sizeof(*pkt->side_data));
> 

Set Ok.
_______________________________________________
libav-devel mailing list
libav-devel@libav.org
https://lists.libav.org/mailman/listinfo/libav-devel

Reply via email to