Browse Source

lavf/wtvdec: add missing { } around if.

This should fix the current failures spotted by FATE.
tags/n1.0
Clément Bœsch 13 years ago
parent
commit
c855ce2671
1 changed files with 4 additions and 4 deletions
  1. +4
    -4
      libavformat/wtvdec.c

+ 4
- 4
libavformat/wtvdec.c View File

@@ -461,18 +461,18 @@ static void get_tag(AVFormatContext *s, AVIOContext *pb, const char *key, int ty
} else if (type == 4 && length == 8) {
int64_t num = avio_rl64(pb);
if (!strcmp(key, "WM/EncodingTime") ||
!strcmp(key, "WM/MediaOriginalBroadcastDateTime"))
!strcmp(key, "WM/MediaOriginalBroadcastDateTime")) {
if (filetime_to_iso8601(buf, buf_size, num) < 0) {
av_free(buf);
return;
}
else if (!strcmp(key, "WM/WMRVEncodeTime") ||
!strcmp(key, "WM/WMRVEndTime"))
} else if (!strcmp(key, "WM/WMRVEncodeTime") ||
!strcmp(key, "WM/WMRVEndTime")) {
if (crazytime_to_iso8601(buf, buf_size, num) < 0) {
av_free(buf);
return;
}
else if (!strcmp(key, "WM/WMRVExpirationDate")) {
} else if (!strcmp(key, "WM/WMRVExpirationDate")) {
if (oledate_to_iso8601(buf, buf_size, num) < 0 ) {
av_free(buf);
return;


Loading…
Cancel
Save