Skip to content
Snippets Groups Projects
Commit 0a7ce3ca authored by Martin Storsjö's avatar Martin Storsjö
Browse files

flvdec: Fix indentation


Also split a long line.

Signed-off-by: default avatarMartin Storsjö <martin@martin.st>
parent aa96d433
No related branches found
No related tags found
No related merge requests found
...@@ -204,8 +204,9 @@ static int parse_keyframes_index(AVFormatContext *s, AVIOContext *ioc, AVStream ...@@ -204,8 +204,9 @@ static int parse_keyframes_index(AVFormatContext *s, AVIOContext *ioc, AVStream
} }
if (!ret && timeslen == fileposlen) if (!ret && timeslen == fileposlen)
for (i = 0; i < fileposlen; i++) for (i = 0; i < fileposlen; i++)
av_add_index_entry(vstream, filepositions[i], times[i]*1000, 0, 0, AVINDEX_KEYFRAME); av_add_index_entry(vstream, filepositions[i], times[i]*1000,
0, 0, AVINDEX_KEYFRAME);
else else
av_log(s, AV_LOG_WARNING, "Invalid keyframes object, skipping.\n"); av_log(s, AV_LOG_WARNING, "Invalid keyframes object, skipping.\n");
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment