summaryrefslogtreecommitdiff
path: root/libavformat/movenc.c
diff options
context:
space:
mode:
authorMartin Storsjö <martin@martin.st>2011-05-18 16:21:46 +0300
committerMichael Niedermayer <michaelni@gmx.at>2011-05-20 01:44:10 +0200
commitabe936388940e5d54057c74ba0afc3d228eccdc0 (patch)
treea3b139495bec80aa226eb30250c91b10e4d1c091 /libavformat/movenc.c
parentc78a85adf4a153914233e02b4d44f9414bc579d7 (diff)
sdp: Allow passing AVFormatContext flags to the SDP generation
Diffstat (limited to 'libavformat/movenc.c')
-rw-r--r--libavformat/movenc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/movenc.c b/libavformat/movenc.c
index 1b61706da3..7bdffcc722 100644
--- a/libavformat/movenc.c
+++ b/libavformat/movenc.c
@@ -1324,7 +1324,7 @@ static int mov_write_udta_sdp(AVIOContext *pb, AVCodecContext *ctx, int index)
char buf[1000] = "";
int len;
- ff_sdp_write_media(buf, sizeof(buf), ctx, NULL, NULL, 0, 0);
+ ff_sdp_write_media(buf, sizeof(buf), ctx, NULL, NULL, 0, 0, 0);
av_strlcatf(buf, sizeof(buf), "a=control:streamid=%d\r\n", index);
len = strlen(buf);