mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-06-07 07:58:51 +00:00
qtmux: write all udta children atoms
UDTA might have META and other children atoms together, write them all.
This commit is contained in:
parent
ca136fe76b
commit
0922dbc22e
1 changed files with 2 additions and 1 deletions
|
@ -2234,7 +2234,8 @@ atom_udta_copy_data (AtomUDTA * udta, guint8 ** buffer, guint64 * size,
|
||||||
if (!atom_meta_copy_data (udta->meta, buffer, size, offset)) {
|
if (!atom_meta_copy_data (udta->meta, buffer, size, offset)) {
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
} else if (udta->entries) {
|
}
|
||||||
|
if (udta->entries) {
|
||||||
/* extra atoms */
|
/* extra atoms */
|
||||||
if (!atom_info_list_copy_data (udta->entries, buffer, size, offset))
|
if (!atom_info_list_copy_data (udta->entries, buffer, size, offset))
|
||||||
return 0;
|
return 0;
|
||||||
|
|
Loading…
Reference in a new issue