summaryrefslogtreecommitdiffstats
path: root/libmpdemux
diff options
context:
space:
mode:
authorrsf <rsf@b3059339-0415-0410-9bf9-f77b7e298cf2>2004-01-06 09:30:27 +0000
committerrsf <rsf@b3059339-0415-0410-9bf9-f77b7e298cf2>2004-01-06 09:30:27 +0000
commit3b8f28041c62c4891dba67e308277c81980a293b (patch)
tree09657ebab82e7919c6bbc672c12a77da48305987 /libmpdemux
parentbeeb1b127d494d40b391b0d33ae3cc17c92b8089 (diff)
downloadmpv-3b8f28041c62c4891dba67e308277c81980a293b.tar.bz2
mpv-3b8f28041c62c4891dba67e308277c81980a293b.tar.xz
Changed to conform to recent changes to the "LIVE.COM Streaming Media" code.
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@11756 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'libmpdemux')
-rw-r--r--libmpdemux/demux_rtp.cpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/libmpdemux/demux_rtp.cpp b/libmpdemux/demux_rtp.cpp
index f40dfed73c..d7b74ff0e8 100644
--- a/libmpdemux/demux_rtp.cpp
+++ b/libmpdemux/demux_rtp.cpp
@@ -390,7 +390,9 @@ extern "C" void demux_close_rtp(demuxer_t* demuxer) {
// >= the largest conceivable frame composed from one or more RTP packets
static void afterReading(void* clientData, unsigned frameSize,
- struct timeval presentationTime) {
+ unsigned /*numTruncatedBytes*/,
+ struct timeval presentationTime,
+ unsigned /*durationInMicroseconds*/) {
if (frameSize >= MAX_RTP_FRAME_SIZE) {
fprintf(stderr, "Saw an input frame too large (>=%d). Increase MAX_RTP_FRAME_SIZE in \"demux_rtp.cpp\".\n",
MAX_RTP_FRAME_SIZE);