1
0
mirror of https://github.com/FFmpeg/FFmpeg.git synced 2025-01-19 05:49:09 +02:00

avcodec/interplayvideo: cosmetics

This commit is contained in:
Paul B Mahol 2019-10-24 15:30:08 +02:00
parent f166951d6e
commit 9bf5e7992f

View File

@ -1231,7 +1231,7 @@ static int ipvideo_decode_frame(AVCodecContext *avctx,
s->decoding_map_size = AV_RL16(buf + 4); s->decoding_map_size = AV_RL16(buf + 4);
s->skip_map_size = AV_RL16(buf + 6); s->skip_map_size = AV_RL16(buf + 6);
switch(frame_format) { switch (frame_format) {
case 0x06: case 0x06:
if (s->decoding_map_size) { if (s->decoding_map_size) {
av_log(avctx, AV_LOG_ERROR, "Decoding map for format 0x06\n"); av_log(avctx, AV_LOG_ERROR, "Decoding map for format 0x06\n");
@ -1330,7 +1330,7 @@ static int ipvideo_decode_frame(AVCodecContext *avctx,
} }
} }
switch(frame_format) { switch (frame_format) {
case 0x06: case 0x06:
ipvideo_decode_format_06_opcodes(s, frame); ipvideo_decode_format_06_opcodes(s, frame);
break; break;