From d6d5df1f9d79a55607bd152f78902346726165c0 Mon Sep 17 00:00:00 2001 From: Wim Taymans Date: Sat, 12 Feb 2000 12:20:32 +0000 Subject: [PATCH] The first functional video MPEG1 decoder. The decoder still opens a window to show the video. This is not optimised a... Original commit message from CVS: The first functional video MPEG1 decoder. The decoder still opens a window to show the video. This is not optimised at all. Some glitches and crashes due to bugs in mp1videoparse.c. I need to queue incomplete slices in mp1videoparse before sending them to the decoder. use test/mp1parse on your favorite video to test. No audio/video sync, no QoS at all. --- test/mp1parse.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/mp1parse.c b/test/mp1parse.c index 02ad368b95..fa384e1fb9 100644 --- a/test/mp1parse.c +++ b/test/mp1parse.c @@ -9,7 +9,7 @@ void eof(GstSrc *src) { } void mp1parse_info_chain(GstPad *pad,GstBuffer *buf) { - g_print("sink : got buffer of size %d\n",GST_BUFFER_SIZE(buf)); + //g_print("sink : got buffer of size %d\n",GST_BUFFER_SIZE(buf)); gst_buffer_unref(buf); }