mirror of
https://github.com/xenia-project/FFmpeg.git
synced 2025-02-04 02:56:24 +00:00
Cosmetics: Reindent Sierra vmd demuxer after last commit.
This commit is contained in:
parent
4ec509ce3d
commit
7c23922c2b
@ -106,10 +106,11 @@ static int vmd_read_header(AVFormatContext *s)
|
||||
width = AV_RL16(&vmd->vmd_header[12]);
|
||||
height = AV_RL16(&vmd->vmd_header[14]);
|
||||
if (width && height) {
|
||||
if(vmd->vmd_header[24] == 'i' && vmd->vmd_header[25] == 'v' && vmd->vmd_header[26] == '3')
|
||||
if(vmd->vmd_header[24] == 'i' && vmd->vmd_header[25] == 'v' && vmd->vmd_header[26] == '3') {
|
||||
vmd->is_indeo3 = 1;
|
||||
else
|
||||
} else {
|
||||
vmd->is_indeo3 = 0;
|
||||
}
|
||||
/* start up the decoders */
|
||||
vst = avformat_new_stream(s, NULL);
|
||||
if (!vst)
|
||||
|
Loading…
x
Reference in New Issue
Block a user