summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorWim Taymans <wim.taymans@gmail.com>2002-03-06 22:49:01 +0000
committerWim Taymans <wim.taymans@gmail.com>2002-03-06 22:49:01 +0000
commitfef1a9307ee15214fe0882df6b4f6ce65adbeb55 (patch)
tree1e167392dc9c0b5c3435bd342731d920b31af48e
parent9a7e2b133bc7c852b60fbb2538050a76c087d7be (diff)
Make sure we use proper properties to define the different AVI types.
Original commit message from CVS: Make sure we use proper properties to define the different AVI types.
-rw-r--r--gst/avi/gstavidemux.c4
-rw-r--r--gst/avi/gstcdxaparse.c2
2 files changed, 3 insertions, 3 deletions
diff --git a/gst/avi/gstavidemux.c b/gst/avi/gstavidemux.c
index 5fb40fb6..b5a9aa67 100644
--- a/gst/avi/gstavidemux.c
+++ b/gst/avi/gstavidemux.c
@@ -67,7 +67,7 @@ GST_PADTEMPLATE_FACTORY (sink_templ,
GST_CAPS_NEW (
"avidemux_sink",
"video/avi",
- "RIFF", GST_PROPS_STRING ("AVI")
+ "format", GST_PROPS_STRING ("AVI")
)
)
@@ -267,7 +267,7 @@ avi_typefind (GstBuffer *buf,
new = GST_CAPS_NEW ("avi_typefind",
"video/avi",
- "RIFF", GST_PROPS_STRING ("AVI"));
+ "format", GST_PROPS_STRING ("AVI"));
return new;
}
diff --git a/gst/avi/gstcdxaparse.c b/gst/avi/gstcdxaparse.c
index b8c58869..31ce3161 100644
--- a/gst/avi/gstcdxaparse.c
+++ b/gst/avi/gstcdxaparse.c
@@ -74,7 +74,7 @@ GST_PADTEMPLATE_FACTORY (sink_templ,
GST_CAPS_NEW (
"cdxaparse_sink",
"video/avi",
- "RIFF", GST_PROPS_STRING ("CDXA")
+ "format", GST_PROPS_STRING ("CDXA")
)
)