mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-12-23 12:43:46 +02:00
rtspenc: Add RTP muxer options
Signed-off-by: Martin Storsjö <martin@martin.st>
This commit is contained in:
parent
6cf09bb7ef
commit
e2e29c6247
@ -344,6 +344,11 @@ typedef struct RTSPState {
|
||||
* Do not begin to play the stream immediately.
|
||||
*/
|
||||
int initial_pause;
|
||||
|
||||
/**
|
||||
* Option flags for the chained RTP muxer.
|
||||
*/
|
||||
int rtp_muxer_flags;
|
||||
} RTSPState;
|
||||
|
||||
/**
|
||||
|
@ -34,10 +34,12 @@
|
||||
#include "libavutil/avstring.h"
|
||||
#include "url.h"
|
||||
#include "libavutil/opt.h"
|
||||
#include "rtpenc.h"
|
||||
|
||||
#define SDP_MAX_SIZE 16384
|
||||
|
||||
static const AVOption options[] = {
|
||||
FF_RTP_FLAG_OPTS(RTSPState, rtp_muxer_flags),
|
||||
{ NULL },
|
||||
};
|
||||
|
||||
|
@ -25,7 +25,7 @@
|
||||
|
||||
#define LIBAVFORMAT_VERSION_MAJOR 53
|
||||
#define LIBAVFORMAT_VERSION_MINOR 1
|
||||
#define LIBAVFORMAT_VERSION_MICRO 1
|
||||
#define LIBAVFORMAT_VERSION_MICRO 2
|
||||
|
||||
#define LIBAVFORMAT_VERSION_INT AV_VERSION_INT(LIBAVFORMAT_VERSION_MAJOR, \
|
||||
LIBAVFORMAT_VERSION_MINOR, \
|
||||
|
Loading…
Reference in New Issue
Block a user