Spelling fixes
authorJohan Dahlin <johan@gnome.org>
Mon, 16 Feb 2004 16:54:38 +0000 (16:54 +0000)
committerJohan Dahlin <johan@gnome.org>
Mon, 16 Feb 2004 16:54:38 +0000 (16:54 +0000)
Original commit message from CVS:
Spelling fixes

gst/asfdemux/gstasfdemux.c
gst/mpegstream/gstmpegdemux.c

index 12c3328..94ccbe1 100644 (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;
index 93a0d38..5295f56 100644 (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");
     }