mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-04-26 05:46:13 +00:00
atoms: remove unused argument of build_mov_wave_extension()
AtomTrak * trak argument of build_move_wave_extension() isn't used. Removing it.
This commit is contained in:
parent
ca6d71ef2a
commit
0fffb8f2e2
1 changed files with 4 additions and 4 deletions
|
@ -4285,8 +4285,8 @@ build_btrt_extension (guint32 buffer_size_db, guint32 avg_bitrate,
|
||||||
}
|
}
|
||||||
|
|
||||||
static AtomInfo *
|
static AtomInfo *
|
||||||
build_mov_wave_extension (AtomTRAK * trak, guint32 fourcc, AtomInfo * atom1,
|
build_mov_wave_extension (guint32 fourcc, AtomInfo * atom1, AtomInfo * atom2,
|
||||||
AtomInfo * atom2, gboolean terminator)
|
gboolean terminator)
|
||||||
{
|
{
|
||||||
AtomWAVE *wave;
|
AtomWAVE *wave;
|
||||||
AtomFRMA *frma;
|
AtomFRMA *frma;
|
||||||
|
@ -4339,7 +4339,7 @@ build_mov_aac_extension (AtomTRAK * trak, const GstBuffer * codec_data,
|
||||||
mp4a = build_codec_data_extension (FOURCC_mp4a, buf);
|
mp4a = build_codec_data_extension (FOURCC_mp4a, buf);
|
||||||
gst_buffer_unref (buf);
|
gst_buffer_unref (buf);
|
||||||
|
|
||||||
return build_mov_wave_extension (trak, FOURCC_mp4a, mp4a, esds, TRUE);
|
return build_mov_wave_extension (FOURCC_mp4a, mp4a, esds, TRUE);
|
||||||
}
|
}
|
||||||
|
|
||||||
AtomInfo *
|
AtomInfo *
|
||||||
|
@ -4349,7 +4349,7 @@ build_mov_alac_extension (AtomTRAK * trak, const GstBuffer * codec_data)
|
||||||
|
|
||||||
alac = build_codec_data_extension (FOURCC_alac, codec_data);
|
alac = build_codec_data_extension (FOURCC_alac, codec_data);
|
||||||
|
|
||||||
return build_mov_wave_extension (trak, FOURCC_alac, NULL, alac, TRUE);
|
return build_mov_wave_extension (FOURCC_alac, NULL, alac, TRUE);
|
||||||
}
|
}
|
||||||
|
|
||||||
AtomInfo *
|
AtomInfo *
|
||||||
|
|
Loading…
Reference in a new issue