mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-22 01:31:03 +00:00
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.
This commit is contained in:
parent
12f3571c50
commit
d6d5df1f9d
1 changed files with 1 additions and 1 deletions
|
@ -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);
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue