summaryrefslogtreecommitdiff
path: root/libavformat/sdp.c
diff options
context:
space:
mode:
authorAndreas Öman <andreas@lonelycoder.com>2010-08-25 21:07:04 +0000
committerAndreas Öman <andreas@lonelycoder.com>2010-08-25 21:07:04 +0000
commitf06d6c751f708a6a145bbf87520e7f59140bbbb2 (patch)
tree131938e52fd33356ddf47cf5c31174404f76798b /libavformat/sdp.c
parent6697bc33e2523265c430a31d5babde10798a9ee4 (diff)
Make stub version of ff_sdp_write_media() match its prototype
Used when compiled without CONFIG_RTP_MUXER Fallout from r24915 Originally committed as revision 24935 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat/sdp.c')
-rw-r--r--libavformat/sdp.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/libavformat/sdp.c b/libavformat/sdp.c
index 34eb58672e..f7c11934ac 100644
--- a/libavformat/sdp.c
+++ b/libavformat/sdp.c
@@ -511,8 +511,7 @@ int avf_sdp_create(AVFormatContext *ac[], int n_files, char *buff, int size)
return AVERROR(ENOSYS);
}
-void ff_sdp_write_media(char *buff, int size, AVCodecContext *c,
- const char *dest_addr, int port, int ttl)
+void ff_sdp_write_media(char *buff, int size, AVCodecContext *c, const char *dest_addr, const char *dest_type, int port, int ttl)
{
}
#endif