[FFmpeg-devel] [PATCH] lavf/wtvdec: add missing { } around if.
Clément Bœsch
ubitux at gmail.com
Mon Jul 2 08:17:40 CEST 2012
This should fix the current failures spotted by FATE.
---
libavformat/wtvdec.c | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/libavformat/wtvdec.c b/libavformat/wtvdec.c
index eb31250..bbd7c23 100644
--- a/libavformat/wtvdec.c
+++ b/libavformat/wtvdec.c
@@ -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;
--
1.7.11.1
More information about the ffmpeg-devel
mailing list