Mercurial > audlegacy-plugins
comparison src/vorbis/vorbis.c @ 1465:db616ccdd40c
use tuple_free(x) in place of mowgli_object_unref(x)
author | Giacomo Lozito <james@develia.org> |
---|---|
date | Sat, 11 Aug 2007 12:21:30 +0200 |
parents | 195b5657303e |
children | d018975175f4 |
comparison
equal
deleted
inserted
replaced
1464:a19e4395eaff | 1465:db616ccdd40c |
---|---|
609 | 609 |
610 *length = tuple_get_int(tuple, "length"); | 610 *length = tuple_get_int(tuple, "length"); |
611 *title = tuple_formatter_process_string(tuple, vorbis_cfg.tag_override ? | 611 *title = tuple_formatter_process_string(tuple, vorbis_cfg.tag_override ? |
612 vorbis_cfg.tag_format : cfg.gentitle_format); | 612 vorbis_cfg.tag_format : cfg.gentitle_format); |
613 | 613 |
614 mowgli_object_unref(tuple); | 614 tuple_free(tuple); |
615 } | 615 } |
616 | 616 |
617 static const gchar * | 617 static const gchar * |
618 get_extension(const gchar * filename) | 618 get_extension(const gchar * filename) |
619 { | 619 { |
843 | 843 |
844 g_free(old); | 844 g_free(old); |
845 g_free(tmp); | 845 g_free(tmp); |
846 } | 846 } |
847 | 847 |
848 mowgli_object_unref(input); | 848 tuple_free(input); |
849 | 849 |
850 return displaytitle; | 850 return displaytitle; |
851 } | 851 } |
852 | 852 |
853 static void | 853 static void |