You've already forked FFmpeg
mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-08-15 14:13:16 +02:00
Cosmetics: Reindent Sierra vmd demuxer after last commit.
This commit is contained in:
@@ -106,10 +106,11 @@ static int vmd_read_header(AVFormatContext *s)
|
|||||||
width = AV_RL16(&vmd->vmd_header[12]);
|
width = AV_RL16(&vmd->vmd_header[12]);
|
||||||
height = AV_RL16(&vmd->vmd_header[14]);
|
height = AV_RL16(&vmd->vmd_header[14]);
|
||||||
if (width && height) {
|
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;
|
vmd->is_indeo3 = 1;
|
||||||
else
|
} else {
|
||||||
vmd->is_indeo3 = 0;
|
vmd->is_indeo3 = 0;
|
||||||
|
}
|
||||||
/* start up the decoders */
|
/* start up the decoders */
|
||||||
vst = avformat_new_stream(s, NULL);
|
vst = avformat_new_stream(s, NULL);
|
||||||
if (!vst)
|
if (!vst)
|
||||||
|
Reference in New Issue
Block a user