This website works better with JavaScript.
Home
Help
Sign In
falkTX
/
FFmpeg
mirror of
https://github.com/falkTX/FFmpeg.git
Watch
1
Star
0
Fork
0
Code
Issues
0
Releases
338
Wiki
Activity
Browse Source
avprobe: Remove a pointless check
The element is always valid. CC:
libav-stable@libav.org
Bug-Id: CID 732276
tags/n2.5
Luca Barbato
Vittorio Giovara
10 years ago
parent
e58a140cf9
commit
aeb23fc454
1 changed files
with
1 additions
and
1 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-1
avprobe.c
+ 1
- 1
avprobe.c
View File
@@ -181,7 +181,7 @@ static void ini_print_object_header(const char *name)
}
avio_printf(probe_out, "%s", name);
if (el
&& el
->type == ARRAY)
if (el->type == ARRAY)
avio_printf(probe_out, ".%"PRId64"", el->nb_elems);
avio_printf(probe_out, "]\n");
}
Write
Preview
Loading…
Cancel
Save