diff options
author | Martin Storsjö <martin@martin.st> | 2013-07-31 12:29:32 +0300 |
---|---|---|
committer | Martin Storsjö <martin@martin.st> | 2013-07-31 21:12:34 +0300 |
commit | b7e6da988bfd5def40ccf3476eb8ce2f98a969a5 (patch) | |
tree | 67a40939752d01a3a86919a437a0509323d814fb /libavformat/rtpproto.c | |
parent | 892b0be1dfbdeaf71235fb6c593286e4f5c7e4ec (diff) | |
download | ffmpeg-b7e6da988bfd5def40ccf3476eb8ce2f98a969a5.tar.gz |
rtpproto: Move rtpproto specific function declarations to a separate header
Mixing these with the rtp depacketizer functions in rtpdec.h is
no good.
Signed-off-by: Martin Storsjö <martin@martin.st>
Diffstat (limited to 'libavformat/rtpproto.c')
-rw-r--r-- | libavformat/rtpproto.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/libavformat/rtpproto.c b/libavformat/rtpproto.c index c857318ca5..4e177b935d 100644 --- a/libavformat/rtpproto.c +++ b/libavformat/rtpproto.c @@ -28,7 +28,8 @@ #include "libavutil/avstring.h" #include "avformat.h" #include "avio_internal.h" -#include "rtpdec.h" +#include "rtp.h" +#include "rtpproto.h" #include "url.h" #include <stdarg.h> |