Spelling fixes

Original commit message from CVS:
Spelling fixes
This commit is contained in:
Johan Dahlin 2004-02-16 16:54:38 +00:00
parent da1311e76c
commit 460a1f29be
2 changed files with 6 additions and 6 deletions

View file

@ -1413,7 +1413,7 @@ gst_asf_demux_audio_caps (guint16 codec_id,
break;
default:
GST_WARNING ("asfdemux: unkown audio format 0x%04x",
GST_WARNING ("asfdemux: unknown audio format 0x%04x",
codec_id);
return GST_CAPS_ANY;
break;
@ -1548,7 +1548,7 @@ gst_asf_demux_video_caps (guint32 codec_fcc,
break;
default:
GST_WARNING ("asfdemux: unkown video format " GST_FOURCC_FORMAT "(0x%08x)",
GST_WARNING ("asfdemux: unknown video format " GST_FOURCC_FORMAT "(0x%08x)",
GST_FOURCC_ARGS(codec_fcc), codec_fcc);
return NULL;
break;

View file

@ -439,7 +439,7 @@ gst_mpeg_demux_parse_syshead (GstMPEGParse *mpeg_parse, GstBuffer *buffer)
"systemstream", G_TYPE_BOOLEAN, FALSE, NULL);
}
} else {
GST_DEBUG ("unkown stream id %d", stream_id);
GST_DEBUG ("unknown stream id %d", stream_id);
}
GST_DEBUG ("stream ID 0x%02X (%s)", stream_id, name);
@ -828,7 +828,7 @@ gst_mpeg_demux_parse_pes (GstMPEGParse *mpeg_parse, GstBuffer *buffer)
headerlen += 1;
datalen -= 1;
} else {
GST_DEBUG ("0x%02X: unkonwn id %x",
GST_DEBUG ("0x%02X: unknown id %x",
id, ps_id_code);
}
} else if (id == 0xBF) {
@ -844,7 +844,7 @@ gst_mpeg_demux_parse_pes (GstMPEGParse *mpeg_parse, GstBuffer *buffer)
GST_DEBUG ("we have a video packet");
outstream = &mpeg_demux->video_stream[id - 0xE0];
} else {
GST_DEBUG ("we have a unkown packet");
GST_DEBUG ("we have a unknown packet");
}
/* if we don't know what it is, bail */
@ -902,7 +902,7 @@ gst_mpeg_demux_parse_pes (GstMPEGParse *mpeg_parse, GstBuffer *buffer)
"systemstream", G_TYPE_BOOLEAN, FALSE, NULL);
}
} else {
/* unkown */
/* unknown */
name = g_strdup_printf ("unknown");
}