Browse Source

dxtory: change error code for unexpected slice configuration

tags/n2.2-rc1
Kostya Shishkov 12 years ago
parent
commit
025fd76e1a
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      libavcodec/dxtory.c

+ 1
- 1
libavcodec/dxtory.c View File

@@ -135,7 +135,7 @@ static int dxtory_decode_v2(AVCodecContext *avctx, AVFrame *pic,
if (!nslices || avctx->height % nslices) {
avpriv_request_sample(avctx, "%d slices for %dx%d", nslices,
avctx->width, avctx->height);
return AVERROR(ENOSYS);
return AVERROR_PATCHWELCOME;
}

ref_slice_height = avctx->height / nslices;


Loading…
Cancel
Save