diff options
author | Sebastian Dröge <sebastian@centricular.com> | 2016-09-28 20:55:24 +0300 |
---|---|---|
committer | Sebastian Dröge <sebastian@centricular.com> | 2016-11-01 20:41:22 +0200 |
commit | 4cff5093eee6c1e18c4cf7200e94badd6142a78b (patch) | |
tree | efd809d37a2e8d6b9105ac2e75d15f6daaa6dd56 | |
parent | fe38414412dd6bce00977b7f88da0e111d7a3187 (diff) |
atoms: 'pasp' atom is also part of MP4, write it always
https://bugzilla.gnome.org/show_bug.cgi?id=769048
-rw-r--r-- | gst/isomp4/atoms.c | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/gst/isomp4/atoms.c b/gst/isomp4/atoms.c index 338bae590..0709c56c3 100644 --- a/gst/isomp4/atoms.c +++ b/gst/isomp4/atoms.c @@ -4056,11 +4056,8 @@ atom_trak_set_video_type (AtomTRAK * trak, AtomsContext * context, if (ext_atoms_list) ste->extension_atoms = g_list_concat (ste->extension_atoms, ext_atoms_list); - /* QT spec has a pasp extension atom in stsd that can hold PAR */ - if (context->flavor == ATOMS_TREE_FLAVOR_MOV) { - ste->extension_atoms = g_list_append (ste->extension_atoms, - build_pasp_extension (par_n, par_d)); - } + ste->extension_atoms = g_list_append (ste->extension_atoms, + build_pasp_extension (par_n, par_d)); return ste; } |