Browse Source

flvdec: Fix indentation

Also split a long line.

Signed-off-by: Martin Storsjö <martin@martin.st>
tags/n0.11
Martin Storsjö 13 years ago
parent
commit
0a7ce3caa8
1 changed files with 3 additions and 2 deletions
  1. +3
    -2
      libavformat/flvdec.c

+ 3
- 2
libavformat/flvdec.c View File

@@ -204,8 +204,9 @@ static int parse_keyframes_index(AVFormatContext *s, AVIOContext *ioc, AVStream
}

if (!ret && timeslen == fileposlen)
for (i = 0; i < fileposlen; i++)
av_add_index_entry(vstream, filepositions[i], times[i]*1000, 0, 0, AVINDEX_KEYFRAME);
for (i = 0; i < fileposlen; i++)
av_add_index_entry(vstream, filepositions[i], times[i]*1000,
0, 0, AVINDEX_KEYFRAME);
else
av_log(s, AV_LOG_WARNING, "Invalid keyframes object, skipping.\n");



Loading…
Cancel
Save