~ubuntu-branches/ubuntu/trusty/libav/trusty-proposed

« back to all changes in this revision

Viewing changes to libavformat/rtsp.h

  • Committer: Package Import Robot
  • Author(s): Reinhard Tartler
  • Date: 2012-10-23 18:49:26 UTC
  • mto: (1.1.18 experimental)
  • mto: This revision was merged to the branch mainline in revision 34.
  • Revision ID: package-import@ubuntu.com-20121023184926-cw5imrodltw6h5o4
Tags: upstream-9~beta2
ImportĀ upstreamĀ versionĀ 9~beta2

Show diffs side-by-side

added added

removed removed

Lines of Context:
385
385
     * Timeout to wait for incoming connections.
386
386
     */
387
387
    int initial_timeout;
 
388
 
 
389
    /**
 
390
     * Size of RTP packet reordering queue.
 
391
     */
 
392
    int reordering_queue_size;
388
393
} RTSPState;
389
394
 
390
395
#define RTSP_FLAG_FILTER_SRC  0x1    /**< Filter incoming UDP packets -
391
396
                                          receive packets only from the right
392
397
                                          source address and port. */
393
 
#define RTSP_FLAG_LISTEN 0x2         /**< Wait for incoming connections. */
 
398
#define RTSP_FLAG_LISTEN      0x2    /**< Wait for incoming connections. */
394
399
 
395
400
/**
396
401
 * Describe a single stream, as identified by a single m= line block in the
419
424
    int sdp_payload_type;     /**< payload type */
420
425
    //@}
421
426
 
422
 
    /** The following are used for dynamic protocols (rtp_*.c/rdt.c) */
 
427
    /** The following are used for dynamic protocols (rtpdec_*.c/rdt.c) */
423
428
    //@{
424
429
    /** handler structure */
425
430
    RTPDynamicProtocolHandler *dynamic_handler;