You've already forked FFmpeg
mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-06-14 22:15:12 +02:00
Merge commit '025fd76e1a2623c858d8c686a73cc30980a314b0'
* commit '025fd76e1a2623c858d8c686a73cc30980a314b0': dxtory: change error code for unexpected slice configuration Merged-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
@ -135,7 +135,7 @@ static int dxtory_decode_v2(AVCodecContext *avctx, AVFrame *pic,
|
|||||||
if (!nslices || avctx->height % nslices) {
|
if (!nslices || avctx->height % nslices) {
|
||||||
avpriv_request_sample(avctx, "%d slices for %dx%d", nslices,
|
avpriv_request_sample(avctx, "%d slices for %dx%d", nslices,
|
||||||
avctx->width, avctx->height);
|
avctx->width, avctx->height);
|
||||||
return AVERROR(ENOSYS);
|
return AVERROR_PATCHWELCOME;
|
||||||
}
|
}
|
||||||
|
|
||||||
ref_slice_height = avctx->height / nslices;
|
ref_slice_height = avctx->height / nslices;
|
||||||
|
Reference in New Issue
Block a user