[FFmpeg-devel] [PATCH 2/3] avcodec/videotoolboxenc: pass error code through
"zhilizhao(赵志立)"
quinkblack at foxmail.com
Wed Jan 4 04:35:43 EET 2023
> On Jan 4, 2023, at 02:11, Tomas Härdin <git at haerdin.se> wrote:
>
> tis 2023-01-03 klockan 18:18 +0800 skrev Zhao Zhili:
>> From: Zhao Zhili <zhilizhao at tencent.com>
>>
>> Signed-off-by: Zhao Zhili <zhilizhao at tencent.com>
>> ---
>> libavcodec/videotoolboxenc.c | 4 ++--
>> 1 file changed, 2 insertions(+), 2 deletions(-)
>>
>> diff --git a/libavcodec/videotoolboxenc.c
>> b/libavcodec/videotoolboxenc.c
>> index 27db4e0d5e..3b00e542cb 100644
>> --- a/libavcodec/videotoolboxenc.c
>> +++ b/libavcodec/videotoolboxenc.c
>> @@ -2156,7 +2156,7 @@ static int get_cv_pixel_info(
>>
>> status = get_cv_pixel_format(avctx, av_format, av_color_range,
>> color, &range_guessed);
>> if (status)
>> - return AVERROR(EINVAL);
>> + return status;
>>
>> if (range_guessed) {
>> if (!vtctx->warned_color_range) {
>> @@ -2338,7 +2338,7 @@ static int
>> create_cv_pixel_buffer(AVCodecContext *avctx,
>> status
>> );
>>
>> - return AVERROR_EXTERNAL;
>> + return status;
>
> Are these guaranteed to always be negative?
Yes.
>
> /Tomas
>
> _______________________________________________
> ffmpeg-devel mailing list
> ffmpeg-devel at ffmpeg.org
> https://ffmpeg.org/mailman/listinfo/ffmpeg-devel
>
> To unsubscribe, visit link above, or email
> ffmpeg-devel-request at ffmpeg.org with subject "unsubscribe".
More information about the ffmpeg-devel
mailing list