summaryrefslogtreecommitdiffstats
path: root/gst-libs
diff options
context:
space:
mode:
authorStéphane Loeuillet <gstreamer@leroutier.net>2004-05-14 11:39:41 +0000
committerStéphane Loeuillet <gstreamer@leroutier.net>2004-05-14 11:39:41 +0000
commit8913233da21dbf0fa9087e49cc3c3303d6b7cd03 (patch)
treeed828d78c5a56fd1406782df005b7d302cdcbdba /gst-libs
parent6fb8dff08dd738cdbf9456cdff8a716f0c5f550f (diff)
downloadgst-plugins-bad-8913233da21dbf0fa9087e49cc3c3303d6b7cd03.tar.gz
gst-plugins-bad-8913233da21dbf0fa9087e49cc3c3303d6b7cd03.tar.bz2
gst-plugins-bad-8913233da21dbf0fa9087e49cc3c3303d6b7cd03.zip
- typos : unkown => unknown
Original commit message from CVS: - typos : unkown => unknown - missing break in RIFF/AVI iavs caps creation (was triggering a gsttag.c assert
Diffstat (limited to 'gst-libs')
-rw-r--r--gst-libs/gst/riff/riff-media.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/gst-libs/gst/riff/riff-media.c b/gst-libs/gst/riff/riff-media.c
index c4636834..49a0b9cd 100644
--- a/gst-libs/gst/riff/riff-media.c
+++ b/gst-libs/gst/riff/riff-media.c
@@ -284,7 +284,7 @@ gst_riff_create_video_caps_with_data (guint32 codec_fcc,
break;
default:
- GST_WARNING ("Unkown video fourcc " GST_FOURCC_FORMAT,
+ GST_WARNING ("Unknown video fourcc " GST_FOURCC_FORMAT,
GST_FOURCC_ARGS (codec_fcc));
return NULL;
}
@@ -415,7 +415,7 @@ gst_riff_create_audio_caps (guint16 codec_id,
break;
default:
- GST_WARNING ("Unkown audio tag 0x%04x", codec_id);
+ GST_WARNING ("Unknown audio tag 0x%04x", codec_id);
return NULL;
}
@@ -452,9 +452,10 @@ gst_riff_create_iavs_caps (guint32 codec_fcc,
"systemstream", G_TYPE_BOOLEAN, TRUE, NULL);
if (codec_name)
*codec_name = g_strdup ("Generic DV");
+ break;
default:
- GST_WARNING ("Unkown IAVS fourcc " GST_FOURCC_FORMAT,
+ GST_WARNING ("Unknown IAVS fourcc " GST_FOURCC_FORMAT,
GST_FOURCC_ARGS (codec_fcc));
return NULL;
}