Commit 5c3e5651 authored by Michael Niedermayer's avatar Michael Niedermayer

Merge commit '08859d19'

* commit '08859d19':
  4xm: use the correct logging context
  g2meet: Fix a typo in the height comparison
Merged-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parents 443b29e4 08859d19
......@@ -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]);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment