mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-24 09:10:36 +00:00
qtmux: refactor building stsd entry 'wave' extension
This commit is contained in:
parent
528846c5a1
commit
76b6997b55
1 changed files with 36 additions and 24 deletions
|
@ -3100,42 +3100,34 @@ build_esds_extension (AtomTRAK * trak, guint8 object_type, guint8 stream_type,
|
||||||
atom_esds_free);
|
atom_esds_free);
|
||||||
}
|
}
|
||||||
|
|
||||||
AtomInfo *
|
static AtomInfo *
|
||||||
build_mov_aac_extension (AtomTRAK * trak, const GstBuffer * codec_data)
|
build_mov_wave_extension (AtomTRAK * trak, guint32 fourcc, AtomInfo * atom1,
|
||||||
|
AtomInfo * atom2, gboolean terminator)
|
||||||
{
|
{
|
||||||
AtomWAVE *wave;
|
AtomWAVE *wave;
|
||||||
AtomFRMA *frma;
|
AtomFRMA *frma;
|
||||||
Atom *ext_atom;
|
Atom *ext_atom;
|
||||||
GstBuffer *buf;
|
|
||||||
|
|
||||||
/* Add WAVE atom to the MP4A sample table entry */
|
/* Build WAVE atom for sample table entry */
|
||||||
wave = atom_wave_new ();
|
wave = atom_wave_new ();
|
||||||
|
|
||||||
/* Prepend Terminator atom to the WAVE list first, so it ends up last */
|
/* Prepend Terminator atom to the WAVE list first, so it ends up last */
|
||||||
ext_atom = (Atom *) atom_data_new (FOURCC_null);
|
if (terminator) {
|
||||||
wave->extension_atoms =
|
ext_atom = (Atom *) atom_data_new (FOURCC_null);
|
||||||
atom_info_list_prepend_atom (wave->extension_atoms, (Atom *) ext_atom,
|
wave->extension_atoms =
|
||||||
(AtomCopyDataFunc) atom_data_copy_data, (AtomFreeFunc) atom_data_free);
|
atom_info_list_prepend_atom (wave->extension_atoms, (Atom *) ext_atom,
|
||||||
|
(AtomCopyDataFunc) atom_data_copy_data, (AtomFreeFunc) atom_data_free);
|
||||||
|
}
|
||||||
|
|
||||||
/* Add ESDS atom to WAVE */
|
/* Add supplied atoms to WAVE */
|
||||||
wave->extension_atoms = g_list_prepend (wave->extension_atoms,
|
if (atom2)
|
||||||
build_esds_extension (trak, ESDS_OBJECT_TYPE_MPEG4_P3,
|
wave->extension_atoms = g_list_prepend (wave->extension_atoms, atom2);
|
||||||
ESDS_STREAM_TYPE_AUDIO, codec_data));
|
if (atom1)
|
||||||
|
wave->extension_atoms = g_list_prepend (wave->extension_atoms, atom1);
|
||||||
/* Add MP4A atom to the WAVE:
|
|
||||||
* not really in spec, but makes offset based players happy */
|
|
||||||
buf = gst_buffer_new_and_alloc (4);
|
|
||||||
*((guint32 *) GST_BUFFER_DATA (buf)) = 0;
|
|
||||||
ext_atom = (Atom *) atom_data_new_from_gst_buffer (FOURCC_mp4a, buf);
|
|
||||||
gst_buffer_unref (buf);
|
|
||||||
|
|
||||||
wave->extension_atoms =
|
|
||||||
atom_info_list_prepend_atom (wave->extension_atoms, (Atom *) ext_atom,
|
|
||||||
(AtomCopyDataFunc) atom_data_copy_data, (AtomFreeFunc) atom_data_free);
|
|
||||||
|
|
||||||
/* Add FRMA to the WAVE */
|
/* Add FRMA to the WAVE */
|
||||||
frma = atom_frma_new ();
|
frma = atom_frma_new ();
|
||||||
frma->media_type = FOURCC_mp4a;
|
frma->media_type = fourcc;
|
||||||
|
|
||||||
wave->extension_atoms =
|
wave->extension_atoms =
|
||||||
atom_info_list_prepend_atom (wave->extension_atoms, (Atom *) frma,
|
atom_info_list_prepend_atom (wave->extension_atoms, (Atom *) frma,
|
||||||
|
@ -3145,6 +3137,26 @@ build_mov_aac_extension (AtomTRAK * trak, const GstBuffer * codec_data)
|
||||||
atom_wave_free);
|
atom_wave_free);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
AtomInfo *
|
||||||
|
build_mov_aac_extension (AtomTRAK * trak, const GstBuffer * codec_data)
|
||||||
|
{
|
||||||
|
AtomInfo *esds, *mp4a;
|
||||||
|
GstBuffer *buf;
|
||||||
|
|
||||||
|
/* Add ESDS atom to WAVE */
|
||||||
|
esds = build_esds_extension (trak, ESDS_OBJECT_TYPE_MPEG4_P3,
|
||||||
|
ESDS_STREAM_TYPE_AUDIO, codec_data);
|
||||||
|
|
||||||
|
/* Add MP4A atom to the WAVE:
|
||||||
|
* not really in spec, but makes offset based players happy */
|
||||||
|
buf = gst_buffer_new_and_alloc (4);
|
||||||
|
*((guint32 *) GST_BUFFER_DATA (buf)) = 0;
|
||||||
|
mp4a = build_codec_data_extension (FOURCC_mp4a, buf);
|
||||||
|
gst_buffer_unref (buf);
|
||||||
|
|
||||||
|
return build_mov_wave_extension (trak, FOURCC_mp4a, mp4a, esds, TRUE);
|
||||||
|
}
|
||||||
|
|
||||||
AtomInfo *
|
AtomInfo *
|
||||||
build_fiel_extension (gint fields)
|
build_fiel_extension (gint fields)
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in a new issue