diff options
author | Martin Storsjö <martin@martin.st> | 2011-10-13 14:00:06 +0300 |
---|---|---|
committer | Martin Storsjö <martin@martin.st> | 2011-10-17 19:57:47 +0300 |
commit | 2c9aa0247d6a5654d955fb018a84e7f2ec3a355e (patch) | |
tree | 7cccdf4e911e3c592726f725106542574df82057 /libavformat/rtsp.c | |
parent | 17fff881e796980e2b9817f195e80fe2f2fd197a (diff) | |
download | ffmpeg-2c9aa0247d6a5654d955fb018a84e7f2ec3a355e.tar.gz |
rtsp: Simplify AVOption definitions
Use defines for shortening common parts, omit the .dbl named
initializer (since it's the first element in the union).
Signed-off-by: Martin Storsjö <martin@martin.st>
Diffstat (limited to 'libavformat/rtsp.c')
-rw-r--r-- | libavformat/rtsp.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/libavformat/rtsp.c b/libavformat/rtsp.c index 49c148c8e1..e4c4c98383 100644 --- a/libavformat/rtsp.c +++ b/libavformat/rtsp.c @@ -57,8 +57,10 @@ #define SDP_MAX_SIZE 16384 #define RECVBUF_SIZE 10 * RTP_MAX_PACKET_LENGTH +#define OFFSET(x) offsetof(RTSPState, x) +#define DEC AV_OPT_FLAG_DECODING_PARAM const AVOption ff_rtsp_options[] = { - { "initial_pause", "Don't start playing the stream immediately", offsetof(RTSPState, initial_pause), AV_OPT_TYPE_INT, {.dbl = 0}, 0, 1, AV_OPT_FLAG_DECODING_PARAM }, + { "initial_pause", "Don't start playing the stream immediately", OFFSET(initial_pause), AV_OPT_TYPE_INT, {0}, 0, 1, DEC }, FF_RTP_FLAG_OPTS(RTSPState, rtp_muxer_flags), { NULL }, }; |