Commit e5018d06 authored by lucabe's avatar lucabe

Fix linking when RTP is disabled and libraries are dynamic


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@9945 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 4fe957a9
......@@ -21,6 +21,7 @@
#include "avstring.h"
#include "avformat.h"
#ifdef CONFIG_RTP_MUXER
#define MAX_EXTRADATA_SIZE ((INT_MAX - 10) / 2)
struct sdp_session_level {
......@@ -215,3 +216,9 @@ char *avf_sdp_create(AVFormatContext *ac[], int n_files)
return buff;
}
#else
char *avf_sdp_create(AVFormatContext *ac[], int n_files)
{
return NULL;
}
#endif
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment