Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKostya Shishkov <kostya.shishkov@gmail.com>2006-10-01 09:09:20 +0400
committerKostya Shishkov <kostya.shishkov@gmail.com>2006-10-01 09:09:20 +0400
commit429914a330b17833adefcb1fbb9d07f0e858b1d5 (patch)
tree18f5d434e331a09e52cc158be0103005349ed6ec /libavcodec/qdrw.c
parent3129f3bd0f03f561589e5aa7a86027f8bb8c2c73 (diff)
1l: correct argument order in avcodec_check_dimensions
Originally committed as revision 6400 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/qdrw.c')
-rw-r--r--libavcodec/qdrw.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/qdrw.c b/libavcodec/qdrw.c
index 8463659174..6348161618 100644
--- a/libavcodec/qdrw.c
+++ b/libavcodec/qdrw.c
@@ -136,7 +136,7 @@ static int decode_frame(AVCodecContext *avctx,
static int decode_init(AVCodecContext *avctx){
// QdrawContext * const a = avctx->priv_data;
- if (avcodec_check_dimensions(avctx, avctx->height, avctx->width) < 0) {
+ if (avcodec_check_dimensions(avctx, avctx->width, avctx->height) < 0) {
return 1;
}