diff options
author | Martin Storsjö | 2012-10-17 15:46:30 +0300 |
---|---|---|
committer | Martin Storsjö | 2012-10-18 23:10:48 +0300 |
commit | 3f055f8f5f711cc3c4bf26dfc2d84f98ca46c854 (patch) | |
tree | c2e96280bf1981e37b314dbba2de66ee86bd453f /libavformat/rtsp.h | |
parent | 1c37744963acbeb1258ccda9bd772dd51da0479e (diff) |
rtsp: Allow setting the reordering buffer size via an AVOption
Signed-off-by: Martin Storsjö <martin@martin.st>
Diffstat (limited to 'libavformat/rtsp.h')
-rw-r--r-- | libavformat/rtsp.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/libavformat/rtsp.h b/libavformat/rtsp.h index 55326e9e05..2812fcb393 100644 --- a/libavformat/rtsp.h +++ b/libavformat/rtsp.h @@ -385,6 +385,11 @@ typedef struct RTSPState { * Timeout to wait for incoming connections. */ int initial_timeout; + + /** + * Size of RTP packet reordering queue. + */ + int reordering_queue_size; } RTSPState; #define RTSP_FLAG_FILTER_SRC 0x1 /**< Filter incoming UDP packets - |