mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-27 12:11:13 +00:00
ext/: use gst_tag_list_insert when you want to insert tags
Original commit message from CVS: 2004-02-19 Benjamin Otte <otte@gnome.org> * ext/lame/gstlame.c: (gst_lame_chain): * ext/vorbis/vorbisenc.c: (gst_vorbisenc_chain): use gst_tag_list_insert when you want to insert tags
This commit is contained in:
parent
9635a541e2
commit
efbc0b17af
2 changed files with 7 additions and 1 deletions
|
@ -1,3 +1,9 @@
|
|||
2004-02-19 Benjamin Otte <otte@gnome.org>
|
||||
|
||||
* ext/lame/gstlame.c: (gst_lame_chain):
|
||||
* ext/vorbis/vorbisenc.c: (gst_vorbisenc_chain):
|
||||
use gst_tag_list_insert when you want to insert tags
|
||||
|
||||
2004-02-18 David Schleef <ds@schleef.org>
|
||||
|
||||
* configure.ac: Move massink to gst-rotten
|
||||
|
|
|
@ -768,7 +768,7 @@ gst_lame_chain (GstPad *pad, GstData *_data)
|
|||
break;
|
||||
case GST_EVENT_TAG:
|
||||
if (lame->tags) {
|
||||
gst_tag_list_merge (lame->tags, gst_event_tag_get_list (GST_EVENT (buf)),
|
||||
gst_tag_list_insert (lame->tags, gst_event_tag_get_list (GST_EVENT (buf)),
|
||||
gst_tag_setter_get_merge_mode (GST_TAG_SETTER (lame)));
|
||||
} else {
|
||||
g_assert_not_reached ();
|
||||
|
|
Loading…
Reference in a new issue