gstreamer/ext/rtmp
Mike Ruprecht 96b7059d24 rtmpsrc: Fix element losing data at the end of buffers
rtmpsrc outputs truncated buffers because, when enough data is
read to fill the buffer, the amount read that time (todo) is set
to zero before it's added to the cumulative buffer size (bsize).
The buffer is then truncated to bsize resulting in lost data.
This patch adds todo to bsize before setting todo to zero.

Fixes #678509
2012-06-21 08:36:35 +01:00
..
gstrtmp.c gst: Update for GST_PLUGIN_DEFINE() API changes 2012-04-05 18:02:56 +02:00
gstrtmpsink.c update for buffer changes 2012-03-28 12:53:09 +02:00
gstrtmpsink.h RTMP: add rtmpsink element for output to an RTMP server 2011-06-18 01:09:51 +10:00
gstrtmpsrc.c rtmpsrc: Fix element losing data at the end of buffers 2012-06-21 08:36:35 +01:00
gstrtmpsrc.h rtmpsrc: Add support for seeking 2010-06-06 15:24:23 +02:00
Makefile.am Add WINSOCK2_LIBS, remove WIN32_LIBS, fix rtmp build on Windows some more 2012-05-05 18:20:33 +01:00
README rtmp: Move to ext and drop internal librtmp copy 2010-06-05 18:02:39 +02:00

rtmpsrc:

This plugin requires librtmp from http://rtmpdump.mplayerhq.hu/

You have to build librtmp with -fPIC to be able to use it
with the GStreamer plugin: make XCFLAGS="-fPIC"