smoothstreaming: fix WMV caps

Makes this show at least a picture:
http://playready.directtaps.net/smoothstreaming/TTLSS720VC1/To_The_Limit_720.ism/Manifest
This commit is contained in:
Tim-Philipp Müller 2013-05-08 10:55:16 +01:00
parent 4711da22e9
commit 99c1dce8db

View file

@ -313,7 +313,7 @@ _gst_mss_stream_video_caps_from_fourcc (gchar * fourcc)
"avc", NULL); "avc", NULL);
} else if (strcmp (fourcc, "WVC1") == 0) { } else if (strcmp (fourcc, "WVC1") == 0) {
return gst_caps_new_simple ("video/x-wmv", "wmvversion", G_TYPE_INT, 3, return gst_caps_new_simple ("video/x-wmv", "wmvversion", G_TYPE_INT, 3,
NULL); "format", G_TYPE_STRING, "WVC1", NULL);
} }
return NULL; return NULL;
} }