summaryrefslogtreecommitdiff
path: root/libavformat/rtp_internal.h
diff options
context:
space:
mode:
authorLuca Abeni <lucabe72@email.it>2007-10-02 14:48:08 +0000
committerLuca Abeni <lucabe72@email.it>2007-10-02 14:48:08 +0000
commite0d21bfe835eec87b8c0efe6e9973ae5f588bc07 (patch)
tree1031f231b2673252dd031b79c9fc7045d3a3d254 /libavformat/rtp_internal.h
parent0d0447eae09dca047412a03d64ac2bfc11a80d35 (diff)
Allow to set the maximum number of frames per RTP packet (and add support for
this in the AAC packetizer) Originally committed as revision 10647 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat/rtp_internal.h')
-rw-r--r--libavformat/rtp_internal.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/libavformat/rtp_internal.h b/libavformat/rtp_internal.h
index 96477620b3..4bfa4bba62 100644
--- a/libavformat/rtp_internal.h
+++ b/libavformat/rtp_internal.h
@@ -105,6 +105,7 @@ struct RTPDemuxContext {
/* dynamic payload stuff */
DynamicPayloadPacketHandlerProc parse_packet; ///< This is also copied from the dynamic protocol handler structure
void *dynamic_protocol_context; ///< This is a copy from the values setup from the sdp parsing, in rtsp.c don't free me.
+ int max_frames_per_packet;
};
extern RTPDynamicProtocolHandler *RTPFirstDynamicPayloadHandler;