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.
This commit is contained in:
Wim Taymans 2002-03-06 22:49:01 +00:00
parent 9a7e2b133b
commit fef1a9307e
2 changed files with 3 additions and 3 deletions

View file

@ -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;
}

View file

@ -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")
)
)