Commit 4f5e5a05 authored by Paul B Mahol's avatar Paul B Mahol

lavf/txd: cosmetics: fix identation

Signed-off-by: 's avatarPaul B Mahol <onemda@gmail.com>
parent b08273c9
......@@ -70,17 +70,17 @@ next_chunk:
}
switch (id) {
case TXD_INFO:
if (chunk_size > 100)
break;
case TXD_EXTRA:
avio_skip(s->pb, chunk_size);
case TXD_FILE:
case TXD_TEXTURE:
goto next_chunk;
default:
av_log(s, AV_LOG_ERROR, "unknown chunk id %i\n", id);
return AVERROR_INVALIDDATA;
case TXD_INFO:
if (chunk_size > 100)
break;
case TXD_EXTRA:
avio_skip(s->pb, chunk_size);
case TXD_FILE:
case TXD_TEXTURE:
goto next_chunk;
default:
av_log(s, AV_LOG_ERROR, "unknown chunk id %i\n", id);
return AVERROR_INVALIDDATA;
}
ret = av_get_packet(s->pb, pkt, chunk_size);
......
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