dashdemux: corrected parsing of %u in segment templates
https://bugzilla.gnome.org/show_bug.cgi?id=751716
This commit is contained in:
parent
e2d1126391
commit
0f37768626
@ -2607,7 +2607,7 @@ promote_format_to_uint64 (const gchar * format)
|
|||||||
/* After any 0 and alphanumeric values, there must be
|
/* After any 0 and alphanumeric values, there must be
|
||||||
* an d, x or u. Otherwise validation would have failed
|
* an d, x or u. Otherwise validation would have failed
|
||||||
*/
|
*/
|
||||||
g_assert (p[0] == 'd' || p[0] == 'x' || p[0] != 'u');
|
g_assert (p[0] == 'd' || p[0] == 'x' || p[0] == 'u');
|
||||||
|
|
||||||
promoted_format =
|
promoted_format =
|
||||||
g_strdup_printf ("%.*s" G_GINT64_MODIFIER "%s", (gint) (p - format),
|
g_strdup_printf ("%.*s" G_GINT64_MODIFIER "%s", (gint) (p - format),
|
||||||
|
Loading…
x
Reference in New Issue
Block a user