mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-18 22:36:33 +00:00
qtmux: remove unused type MP4S
This commit is contained in:
parent
f83fd7a88f
commit
674e0cc2df
2 changed files with 0 additions and 30 deletions
|
@ -1741,23 +1741,6 @@ atom_frma_copy_data (AtomFRMA * frma, guint8 ** buffer,
|
||||||
return *offset - original_offset;
|
return *offset - original_offset;
|
||||||
}
|
}
|
||||||
|
|
||||||
static guint64
|
|
||||||
atom_mp4s_copy_data (SampleTableEntryMP4S * mp4s, guint8 ** buffer,
|
|
||||||
guint64 * size, guint64 * offset)
|
|
||||||
{
|
|
||||||
guint64 original_offset = *offset;
|
|
||||||
|
|
||||||
if (!atom_sample_entry_copy_data (&mp4s->se, buffer, size, offset)) {
|
|
||||||
return 0;
|
|
||||||
}
|
|
||||||
if (!atom_esds_copy_data (&mp4s->es, buffer, size, offset)) {
|
|
||||||
return 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
atom_write_size (buffer, size, offset, original_offset);
|
|
||||||
return *offset - original_offset;
|
|
||||||
}
|
|
||||||
|
|
||||||
static guint64
|
static guint64
|
||||||
atom_hint_sample_entry_copy_data (AtomHintSampleEntry * hse, guint8 ** buffer,
|
atom_hint_sample_entry_copy_data (AtomHintSampleEntry * hse, guint8 ** buffer,
|
||||||
guint64 * size, guint64 * offset)
|
guint64 * size, guint64 * offset)
|
||||||
|
@ -2061,12 +2044,6 @@ atom_stsd_copy_data (AtomSTSD * stsd, guint8 ** buffer, guint64 * size,
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
case FOURCC_mp4s:
|
|
||||||
if (!atom_mp4s_copy_data ((SampleTableEntryMP4S *) walker->data,
|
|
||||||
buffer, size, offset)) {
|
|
||||||
return 0;
|
|
||||||
}
|
|
||||||
break;
|
|
||||||
case FOURCC_mp4v:
|
case FOURCC_mp4v:
|
||||||
if (!sample_entry_mp4v_copy_data ((SampleTableEntryMP4V *) walker->data,
|
if (!sample_entry_mp4v_copy_data ((SampleTableEntryMP4V *) walker->data,
|
||||||
buffer, size, offset)) {
|
buffer, size, offset)) {
|
||||||
|
|
|
@ -415,13 +415,6 @@ typedef struct _SampleTableEntryMP4A
|
||||||
GList *extension_atoms;
|
GList *extension_atoms;
|
||||||
} SampleTableEntryMP4A;
|
} SampleTableEntryMP4A;
|
||||||
|
|
||||||
typedef struct _SampleTableEntryMP4S
|
|
||||||
{
|
|
||||||
SampleTableEntry se;
|
|
||||||
|
|
||||||
AtomESDS es;
|
|
||||||
} SampleTableEntryMP4S;
|
|
||||||
|
|
||||||
typedef struct _SampleTableEntryTX3G
|
typedef struct _SampleTableEntryTX3G
|
||||||
{
|
{
|
||||||
SampleTableEntry se;
|
SampleTableEntry se;
|
||||||
|
|
Loading…
Reference in a new issue