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

github.com/mpc-hc/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2013-06-13 11:41:27 +0400
committerMichael Niedermayer <michaelni@gmx.at>2013-06-13 11:41:45 +0400
commit5c3e5651dd88af5da86ef08f01e865bfdea36a3a (patch)
tree68b75a2086167ae33763d33e522cc82c763c41ef /libavcodec/4xm.c
parent443b29e475a63cbfc573bddf46c4cb5ce7b5f461 (diff)
parent08859d19b429c522d6494c186656f4a2d3ff8e21 (diff)
Merge commit '08859d19b429c522d6494c186656f4a2d3ff8e21'
* commit '08859d19b429c522d6494c186656f4a2d3ff8e21': 4xm: use the correct logging context g2meet: Fix a typo in the height comparison Merged-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavcodec/4xm.c')
-rw-r--r--libavcodec/4xm.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/4xm.c b/libavcodec/4xm.c
index d2c90ac5c0..18b1fe9756 100644
--- a/libavcodec/4xm.c
+++ b/libavcodec/4xm.c
@@ -711,9 +711,9 @@ static int decode_i2_frame(FourXContext *f, AVFrame *frame, const uint8_t *buf,
color[1] = bytestream2_get_le16u(&g3);
if (color[0] & 0x8000)
- av_log(NULL, AV_LOG_ERROR, "unk bit 1\n");
+ av_log(f->avctx, AV_LOG_ERROR, "unk bit 1\n");
if (color[1] & 0x8000)
- av_log(NULL, AV_LOG_ERROR, "unk bit 2\n");
+ av_log(f->avctx, AV_LOG_ERROR, "unk bit 2\n");
color[2] = mix(color[0], color[1]);
color[3] = mix(color[1], color[0]);