From 99c1dce8dbb6d2b1cdc55af9bdc42ea91d680d4b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tim-Philipp=20M=C3=BCller?= Date: Wed, 8 May 2013 10:55:16 +0100 Subject: [PATCH] smoothstreaming: fix WMV caps Makes this show at least a picture: http://playready.directtaps.net/smoothstreaming/TTLSS720VC1/To_The_Limit_720.ism/Manifest --- ext/smoothstreaming/gstmssmanifest.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ext/smoothstreaming/gstmssmanifest.c b/ext/smoothstreaming/gstmssmanifest.c index 21e6c10657..510bcee240 100644 --- a/ext/smoothstreaming/gstmssmanifest.c +++ b/ext/smoothstreaming/gstmssmanifest.c @@ -313,7 +313,7 @@ _gst_mss_stream_video_caps_from_fourcc (gchar * fourcc) "avc", NULL); } else if (strcmp (fourcc, "WVC1") == 0) { return gst_caps_new_simple ("video/x-wmv", "wmvversion", G_TYPE_INT, 3, - NULL); + "format", G_TYPE_STRING, "WVC1", NULL); } return NULL; }