Browse Source

exr: print channel names not yet supported

Signed-off-by: Paul B Mahol <onemda@gmail.com>
tags/n1.0
Paul B Mahol 13 years ago
parent
commit
cd3136e84a
1 changed files with 5 additions and 3 deletions
  1. +5
    -3
      libavcodec/exr.c

+ 5
- 3
libavcodec/exr.c View File

@@ -291,12 +291,14 @@ static int decode_frame(AVCodecContext *avctx,

if (!strcmp(buf, "R"))
channel_index = 0;
if (!strcmp(buf, "G"))
else if (!strcmp(buf, "G"))
channel_index = 1;
if (!strcmp(buf, "B"))
else if (!strcmp(buf, "B"))
channel_index = 2;
if (!strcmp(buf, "A"))
else if (!strcmp(buf, "A"))
channel_index = 3;
else
av_log(avctx, AV_LOG_WARNING, "Unsupported channel %.256s\n", buf);

while (bytestream_get_byte(&buf) && buf < channel_list_end)
continue; /* skip */


Loading…
Cancel
Save