diff options
author | David Schleef <ds@schleef.org> | 2003-12-21 23:24:38 +0000 |
---|---|---|
committer | David Schleef <ds@schleef.org> | 2003-12-21 23:24:38 +0000 |
commit | 8284d0d3a2911a9ef9667aa52f0fd42e4c93405f (patch) | |
tree | 5fa53a115231b29afd0bc832f9c32afdd8dd51c7 /examples/seeking | |
parent | 26da56b423a834192f5edf413c3cb1be257f845a (diff) | |
download | gst-plugins-bad-8284d0d3a2911a9ef9667aa52f0fd42e4c93405f.tar.gz gst-plugins-bad-8284d0d3a2911a9ef9667aa52f0fd42e4c93405f.tar.bz2 gst-plugins-bad-8284d0d3a2911a9ef9667aa52f0fd42e4c93405f.zip |
Original commit message from CVS:
Global change from "caps2" to "caps"
Diffstat (limited to 'examples/seeking')
-rw-r--r-- | examples/seeking/vorbisfile.c | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/examples/seeking/vorbisfile.c b/examples/seeking/vorbisfile.c index f191aa7b..acaa60c9 100644 --- a/examples/seeking/vorbisfile.c +++ b/examples/seeking/vorbisfile.c @@ -12,25 +12,25 @@ struct probe_context { gint total_ls; - GstCaps2 *metadata; - GstCaps2 *streaminfo; - GstCaps2 *caps; + GstCaps *metadata; + GstCaps *streaminfo; + GstCaps *caps; }; static void -print_caps (GstCaps2 *caps) +print_caps (GstCaps *caps) { char *s; - s = gst_caps2_to_string (caps); + s = gst_caps_to_string (caps); g_print(" %s\n", s); g_free (s); } static void -print_format (GstCaps2 *caps) +print_format (GstCaps *caps) { char *s; - s = gst_caps2_to_string (caps); + s = gst_caps_to_string (caps); g_print(" format: %s\n", s); g_free (s); } |