mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-02-18 20:25:25 +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
c92785e1c2
commit
953aa983bb
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