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