summaryrefslogtreecommitdiff
path: root/libavcodec
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2014-01-21 21:17:11 +0100
committerMichael Niedermayer <michaelni@gmx.at>2014-01-21 21:17:16 +0100
commita298f934ec9b59f727a97186b928d9d8362a47c7 (patch)
tree768ef55bda4731d03209e024b87582f064cefd73 /libavcodec
parent9eb954b91d3676f2ae207149db2e7f5ee2353df4 (diff)
parent025fd76e1a2623c858d8c686a73cc30980a314b0 (diff)
Merge commit '025fd76e1a2623c858d8c686a73cc30980a314b0'
* commit '025fd76e1a2623c858d8c686a73cc30980a314b0': dxtory: change error code for unexpected slice configuration Merged-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavcodec')
-rw-r--r--libavcodec/dxtory.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/dxtory.c b/libavcodec/dxtory.c
index 78f3a7a758..d61da45ee1 100644
--- a/libavcodec/dxtory.c
+++ b/libavcodec/dxtory.c
@@ -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;