From c952d7bfc6e51a085067bb5d8603f0822a9f131c Mon Sep 17 00:00:00 2001 From: "Zeeshan Ali (Khattak)" Date: Sun, 14 Dec 2008 20:22:41 +0000 Subject: [PATCH] Use H263 enclosed in AVI container. Use H263 enclosed in AVI container instead of theora in ogg. svn path=/trunk/; revision=349 --- src/plugins/test/rygel-test-video-item.vala | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/plugins/test/rygel-test-video-item.vala b/src/plugins/test/rygel-test-video-item.vala index 12e16c1..ad9c9f6 100644 --- a/src/plugins/test/rygel-test-video-item.vala +++ b/src/plugins/test/rygel-test-video-item.vala @@ -33,8 +33,8 @@ using Gst; * Represents Test video item. */ public class Rygel.TestVideoItem : Rygel.TestItem { - const string TEST_PATH = "/test.ogg"; - const string TEST_MIMETYPE = "application/ogg"; + const string TEST_PATH = "/test.avi"; + const string TEST_MIMETYPE = "video/x-msvideo"; public TestVideoItem (string id, string parent_id, @@ -53,8 +53,8 @@ public class Rygel.TestVideoItem : Rygel.TestItem { Bin bin = new Bin (this.title); dynamic Element src = ElementFactory.make ("videotestsrc", null); - Element encoder = ElementFactory.make ("theoraenc", null); - Element muxer = ElementFactory.make ("oggmux", null); + Element encoder = ElementFactory.make ("ffenc_h263", null); + Element muxer = ElementFactory.make ("avimux", null); if (src == null || muxer == null || encoder == null) { throw new GstStreamError.MISSING_PLUGIN ("Required plugin missing"); -- 2.7.4