From cacdea6ae61ee708513bdf459e94c24aaf37275c Mon Sep 17 00:00:00 2001 From: =?utf8?q?Sebastian=20Dr=C3=B6ge?= Date: Tue, 15 May 2012 16:38:30 +0200 Subject: [PATCH] gst: Rename gst_toc_entry_type_to_string() to gst_toc_entry_type_get_nick() It's more consistent. --- docs/gst/gstreamer-sections.txt | 2 +- gst/gsttoc.c | 4 ++-- gst/gsttoc.h | 2 +- tools/gst-launch.c | 2 +- win32/common/libgstreamer.def | 2 +- 5 files changed, 6 insertions(+), 6 deletions(-) diff --git a/docs/gst/gstreamer-sections.txt b/docs/gst/gstreamer-sections.txt index d9cb95f..097fa66 100644 --- a/docs/gst/gstreamer-sections.txt +++ b/docs/gst/gstreamer-sections.txt @@ -2702,7 +2702,7 @@ gst_toc_copy gst_toc_find_entry gst_toc_entry_get_start_stop gst_toc_entry_set_start_stop -gst_toc_entry_type_to_string +gst_toc_entry_type_get_nick GST_TYPE_TOC_ENTRY_TYPE diff --git a/gst/gsttoc.c b/gst/gsttoc.c index b5c092f..a0a4b2d 100644 --- a/gst/gsttoc.c +++ b/gst/gsttoc.c @@ -978,7 +978,7 @@ gst_toc_entry_get_start_stop (const GstTocEntry * entry, gint64 * start, } /** - * gst_toc_entry_type_to_string: + * gst_toc_entry_type_get_nick: * @type: a #GstTocEntryType. * * Converts @type to a string representation. @@ -987,7 +987,7 @@ gst_toc_entry_get_start_stop (const GstTocEntry * entry, gint64 * start, * Since: 0.11.92 */ const gchar * -gst_toc_entry_type_to_string (GstTocEntryType type) +gst_toc_entry_type_get_nick (GstTocEntryType type) { const gchar *entry_types[] = { "chapter", "edition" }; diff --git a/gst/gsttoc.h b/gst/gsttoc.h index 60bb28a..c08868b 100644 --- a/gst/gsttoc.h +++ b/gst/gsttoc.h @@ -105,7 +105,7 @@ GstToc * gst_toc_copy (const GstToc *toc); void gst_toc_entry_set_start_stop (GstTocEntry *entry, gint64 start, gint64 stop); gboolean gst_toc_entry_get_start_stop (const GstTocEntry *entry, gint64 *start, gint64 *stop); -const gchar * gst_toc_entry_type_to_string (GstTocEntryType type); +const gchar * gst_toc_entry_type_get_nick (GstTocEntryType type); G_END_DECLS diff --git a/tools/gst-launch.c b/tools/gst-launch.c index 7266172..d0aa879 100644 --- a/tools/gst-launch.c +++ b/tools/gst-launch.c @@ -472,7 +472,7 @@ print_toc_entry (gpointer data, gpointer user_data) gst_toc_entry_get_start_stop (entry, &start, &stop); PRINT ("%s%s:", &spc[MAX_INDENT - indent], - gst_toc_entry_type_to_string (entry->type)); + gst_toc_entry_type_get_nick (entry->type)); if (GST_CLOCK_TIME_IS_VALID (start)) { PRINT (" start: %" GST_TIME_FORMAT, GST_TIME_ARGS (start)); } diff --git a/win32/common/libgstreamer.def b/win32/common/libgstreamer.def index 7a38249..05ce467 100644 --- a/win32/common/libgstreamer.def +++ b/win32/common/libgstreamer.def @@ -1127,8 +1127,8 @@ EXPORTS gst_toc_entry_new gst_toc_entry_new_with_pad gst_toc_entry_set_start_stop + gst_toc_entry_type_get_nick gst_toc_entry_type_get_type - gst_toc_entry_type_to_string gst_toc_find_entry gst_toc_free gst_toc_new -- 2.7.4