mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-24 02:31:03 +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
36a3243b1a
commit
10367e6279
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
|
||||
|
|
|
@ -763,7 +763,7 @@ gst_vorbisenc_chain (GstPad * pad, GstData *_data)
|
|||
break;
|
||||
case GST_EVENT_TAG:
|
||||
if (vorbisenc->tags) {
|
||||
gst_tag_list_merge (vorbisenc->tags, gst_event_tag_get_list (event),
|
||||
gst_tag_list_insert (vorbisenc->tags, gst_event_tag_get_list (event),
|
||||
gst_tag_setter_get_merge_mode (GST_TAG_SETTER (vorbisenc)));
|
||||
} else {
|
||||
g_assert_not_reached ();
|
||||
|
|
Loading…
Reference in a new issue