diff options
author | Luis de Bethencourt <luisbg@osg.samsung.com> | 2015-11-19 19:48:06 +0000 |
---|---|---|
committer | Luis de Bethencourt <luisbg@osg.samsung.com> | 2015-11-19 19:48:09 +0000 |
commit | 0fffb8f2e2a4c710a1da4c08fd2eb295d368eacc (patch) | |
tree | 45165f99d5277a107278f4a0ef09ad4313c34316 | |
parent | ca6d71ef2aac7a94bb6f0a84a0f3911af10ef65c (diff) |
atoms: remove unused argument of build_mov_wave_extension()
AtomTrak * trak argument of build_move_wave_extension() isn't used.
Removing it.
-rw-r--r-- | gst/isomp4/atoms.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/gst/isomp4/atoms.c b/gst/isomp4/atoms.c index fc98ab3cf..cde19d1ef 100644 --- a/gst/isomp4/atoms.c +++ b/gst/isomp4/atoms.c @@ -4285,8 +4285,8 @@ build_btrt_extension (guint32 buffer_size_db, guint32 avg_bitrate, } static AtomInfo * -build_mov_wave_extension (AtomTRAK * trak, guint32 fourcc, AtomInfo * atom1, - AtomInfo * atom2, gboolean terminator) +build_mov_wave_extension (guint32 fourcc, AtomInfo * atom1, AtomInfo * atom2, + gboolean terminator) { AtomWAVE *wave; AtomFRMA *frma; @@ -4339,7 +4339,7 @@ build_mov_aac_extension (AtomTRAK * trak, const GstBuffer * codec_data, mp4a = build_codec_data_extension (FOURCC_mp4a, 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 * @@ -4349,7 +4349,7 @@ build_mov_alac_extension (AtomTRAK * trak, const GstBuffer * 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 * |