diff options
author | Ryan Martell <rdm4@martellventures.com> | 2006-10-29 10:58:51 +0000 |
---|---|---|
committer | Guillaume Poirier <gpoirier@mplayerhq.hu> | 2006-10-29 10:58:51 +0000 |
commit | d0deedcb07adf60f23fa54d0ed7dcf7ca29ea833 (patch) | |
tree | 63e474cff3be96252aaa2c67595a42d8978338e1 /libavformat/rtp_internal.h | |
parent | 3cedeeca02b7bc6f0de1849bbdad4e4961bcc027 (diff) | |
download | ffmpeg-d0deedcb07adf60f23fa54d0ed7dcf7ca29ea833.tar.gz |
fix more dynamic protocol stuff, needed by the forthcoming h264
streaming patch.
(Minor additions to give more information to the dynamic protocol
handlers, and a slight rearrangement of code.)
Patch by Ryan Martell %rdm4 A martellventures P com%
Original thread:
Date: Oct 29, 2006 2:30 AM
Subject: Re: [Ffmpeg-devel] RTP patches & RFC
Originally committed as revision 6831 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat/rtp_internal.h')
-rw-r--r-- | libavformat/rtp_internal.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/rtp_internal.h b/libavformat/rtp_internal.h index 3930966ad8..953051156b 100644 --- a/libavformat/rtp_internal.h +++ b/libavformat/rtp_internal.h @@ -25,7 +25,7 @@ typedef int (*DynamicPayloadPacketHandlerProc) (struct RTPDemuxContext * s, AVPacket * pkt, - uint32_t timestamp, + uint32_t *timestamp, const uint8_t * buf, int len); |