summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVineeth TM <vineeth.tm@samsung.com>2015-07-22 16:07:19 +0900
committerNicolas Dufresne <nicolas.dufresne@collabora.com>2015-07-30 15:09:00 -0400
commitf020c41d41358af35da09ce5127c722df1d9845e (patch)
tree53bf214bf3afc1725167dd8c573627b49bf21d81
parentc91ed016b1b49322ba11f71aa2b3dce1a18d88aa (diff)
validate: media-descriptor: fix trivial spelling mistakes
replace comparse_stream with compare_streams https://bugzilla.gnome.org/show_bug.cgi?id=748390
-rw-r--r--validate/gst/validate/media-descriptor.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/validate/gst/validate/media-descriptor.c b/validate/gst/validate/media-descriptor.c
index 93f4bc2..8ac7524 100644
--- a/validate/gst/validate/media-descriptor.c
+++ b/validate/gst/validate/media-descriptor.c
@@ -287,7 +287,7 @@ compare_tags (GstMediaDescriptor * ref, StreamNode * rstream,
/* Return -1 if not found 1 if OK 0 if an error occured */
static gint
-comparse_stream (GstMediaDescriptor * ref, StreamNode * rstream,
+compare_streams (GstMediaDescriptor * ref, StreamNode * rstream,
StreamNode * cstream)
{
if (g_strcmp0 (rstream->id, cstream->id) == 0) {
@@ -349,7 +349,7 @@ gst_media_descriptors_compare (GstMediaDescriptor * ref,
for (cstream_list = cfilenode->streams; cstream_list;
cstream_list = cstream_list->next) {
- sfound = comparse_stream (ref, rstream_list->data, cstream_list->data);
+ sfound = compare_streams (ref, rstream_list->data, cstream_list->data);
if (sfound == 0) {
return FALSE;
} else if (sfound == 1) {