mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-10 11:29:55 +00:00
Spelling fixes
Original commit message from CVS: Spelling fixes
This commit is contained in:
parent
da1311e76c
commit
460a1f29be
2 changed files with 6 additions and 6 deletions
|
@ -1413,7 +1413,7 @@ gst_asf_demux_audio_caps (guint16 codec_id,
|
||||||
break;
|
break;
|
||||||
|
|
||||||
default:
|
default:
|
||||||
GST_WARNING ("asfdemux: unkown audio format 0x%04x",
|
GST_WARNING ("asfdemux: unknown audio format 0x%04x",
|
||||||
codec_id);
|
codec_id);
|
||||||
return GST_CAPS_ANY;
|
return GST_CAPS_ANY;
|
||||||
break;
|
break;
|
||||||
|
@ -1548,7 +1548,7 @@ gst_asf_demux_video_caps (guint32 codec_fcc,
|
||||||
break;
|
break;
|
||||||
|
|
||||||
default:
|
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);
|
GST_FOURCC_ARGS(codec_fcc), codec_fcc);
|
||||||
return NULL;
|
return NULL;
|
||||||
break;
|
break;
|
||||||
|
|
|
@ -439,7 +439,7 @@ gst_mpeg_demux_parse_syshead (GstMPEGParse *mpeg_parse, GstBuffer *buffer)
|
||||||
"systemstream", G_TYPE_BOOLEAN, FALSE, NULL);
|
"systemstream", G_TYPE_BOOLEAN, FALSE, NULL);
|
||||||
}
|
}
|
||||||
} else {
|
} 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);
|
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;
|
headerlen += 1;
|
||||||
datalen -= 1;
|
datalen -= 1;
|
||||||
} else {
|
} else {
|
||||||
GST_DEBUG ("0x%02X: unkonwn id %x",
|
GST_DEBUG ("0x%02X: unknown id %x",
|
||||||
id, ps_id_code);
|
id, ps_id_code);
|
||||||
}
|
}
|
||||||
} else if (id == 0xBF) {
|
} 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");
|
GST_DEBUG ("we have a video packet");
|
||||||
outstream = &mpeg_demux->video_stream[id - 0xE0];
|
outstream = &mpeg_demux->video_stream[id - 0xE0];
|
||||||
} else {
|
} else {
|
||||||
GST_DEBUG ("we have a unkown packet");
|
GST_DEBUG ("we have a unknown packet");
|
||||||
}
|
}
|
||||||
|
|
||||||
/* if we don't know what it is, bail */
|
/* 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);
|
"systemstream", G_TYPE_BOOLEAN, FALSE, NULL);
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
/* unkown */
|
/* unknown */
|
||||||
name = g_strdup_printf ("unknown");
|
name = g_strdup_printf ("unknown");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue