Hi,

I've run into a regression that I've tracked down to this snippet of
code in libavcodec/decode.c
```
    if (hwaccel) {
        if (hwaccel->alloc_frame) {
            ret = hwaccel->alloc_frame(avctx, frame);
            goto fail;
        }
    } else
        avctx->sw_pix_fmt = avctx->pix_fmt;
```

The `goto fail` is unconditional, and was introduced in commit a1133db30ef
I'd like to confirm whether it is intentional.

Thank you,
    Pavel.
_______________________________________________
ffmpeg-devel mailing list
ffmpeg-devel@ffmpeg.org
https://ffmpeg.org/mailman/listinfo/ffmpeg-devel

To unsubscribe, visit link above, or email
ffmpeg-devel-requ...@ffmpeg.org with subject "unsubscribe".

Reply via email to