summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWim Taymans <wim.taymans@gmail.com>2002-12-31 14:53:04 +0000
committerWim Taymans <wim.taymans@gmail.com>2002-12-31 14:53:04 +0000
commitb36db2b3dbc9b74e7eb6821f71d6b5d6bc9e33c6 (patch)
treea2b4e17dc73b0a01a532452053c92bfcef776c80
parent82350d82518c2fafa8b9a0d8ad0561dfe6c0dd64 (diff)
Fix typos
Original commit message from CVS: Fix typos
-rw-r--r--ext/mpeg2dec/gstmpeg2dec.c4
-rw-r--r--gst/mpegstream/gstmpegparse.c2
2 files changed, 3 insertions, 3 deletions
diff --git a/ext/mpeg2dec/gstmpeg2dec.c b/ext/mpeg2dec/gstmpeg2dec.c
index ddad3294..d323a346 100644
--- a/ext/mpeg2dec/gstmpeg2dec.c
+++ b/ext/mpeg2dec/gstmpeg2dec.c
@@ -589,7 +589,7 @@ gst_mpeg2dec_chain (GstPad *pad, GstBuffer *buf)
if (mpeg2dec->index) {
gst_index_add_association (mpeg2dec->index, mpeg2dec->index_id,
- (key_frame ? GST_ACCOCIATION_FLAG_KEY_UNIT : 0),
+ (key_frame ? GST_ASSOCIATION_FLAG_KEY_UNIT : 0),
GST_FORMAT_BYTES, GST_BUFFER_OFFSET (outbuf),
GST_FORMAT_TIME, GST_BUFFER_TIMESTAMP (outbuf), 0);
}
@@ -889,7 +889,7 @@ index_seek (GstPad *pad, GstEvent *event)
mpeg2dec = GST_MPEG2DEC (gst_pad_get_parent (pad));
entry = gst_index_get_assoc_entry (mpeg2dec->index, mpeg2dec->index_id,
- GST_INDEX_LOOKUP_BEFORE, GST_ACCOCIATION_FLAG_KEY_UNIT,
+ GST_INDEX_LOOKUP_BEFORE, GST_ASSOCIATION_FLAG_KEY_UNIT,
GST_EVENT_SEEK_FORMAT (event),
GST_EVENT_SEEK_OFFSET (event));
diff --git a/gst/mpegstream/gstmpegparse.c b/gst/mpegstream/gstmpegparse.c
index 3d7a8bfc..33328522 100644
--- a/gst/mpegstream/gstmpegparse.c
+++ b/gst/mpegstream/gstmpegparse.c
@@ -381,7 +381,7 @@ gst_mpeg_parse_parse_packhead (GstMPEGParse *mpeg_parse, GstBuffer *buffer)
if (mpeg_parse->index && GST_INDEX_IS_WRITABLE (mpeg_parse->index)) {
/* update index if any */
gst_index_add_association (mpeg_parse->index, mpeg_parse->index_id,
- GST_ACCOCIATION_FLAG_KEY_UNIT,
+ GST_ASSOCIATION_FLAG_KEY_UNIT,
GST_FORMAT_BYTES, GST_BUFFER_OFFSET (buffer),
GST_FORMAT_TIME, MPEGTIME_TO_GSTTIME (scr), 0);
}