Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in / Register
Toggle navigation
F
ffmpeg.wasm-core
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Linshizhi
ffmpeg.wasm-core
Commits
c855ce26
Commit
c855ce26
authored
Jul 02, 2012
by
Clément Bœsch
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
lavf/wtvdec: add missing { } around if.
This should fix the current failures spotted by FATE.
parent
fbdb2059
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
4 deletions
+4
-4
wtvdec.c
libavformat/wtvdec.c
+4
-4
No files found.
libavformat/wtvdec.c
View file @
c855ce26
...
...
@@ -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
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment