diff options
author | Martin Storsjö <martin@martin.st> | 2011-05-18 16:21:46 +0300 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2011-05-20 01:44:10 +0200 |
commit | abe936388940e5d54057c74ba0afc3d228eccdc0 (patch) | |
tree | a3b139495bec80aa226eb30250c91b10e4d1c091 /libavformat/internal.h | |
parent | c78a85adf4a153914233e02b4d44f9414bc579d7 (diff) | |
download | ffmpeg-abe936388940e5d54057c74ba0afc3d228eccdc0.tar.gz |
sdp: Allow passing AVFormatContext flags to the SDP generation
Diffstat (limited to 'libavformat/internal.h')
-rw-r--r-- | libavformat/internal.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/libavformat/internal.h b/libavformat/internal.h index b8b520d0e2..0f121a0d5e 100644 --- a/libavformat/internal.h +++ b/libavformat/internal.h @@ -116,10 +116,11 @@ int ff_url_join(char *str, int size, const char *proto, * @param dest_type the destination address type, may be NULL * @param port the destination port of the media stream, 0 if unknown * @param ttl the time to live of the stream, 0 if not multicast + * @param flags the AVFormatContext->flags, modifying the generated SDP */ void ff_sdp_write_media(char *buff, int size, AVCodecContext *c, const char *dest_addr, const char *dest_type, - int port, int ttl); + int port, int ttl, int flags); /** * Write a packet to another muxer than the one the user originally |