diff options
author | Luca Abeni <lucabe72@email.it> | 2007-08-24 07:13:34 +0000 |
---|---|---|
committer | Luca Abeni <lucabe72@email.it> | 2007-08-24 07:13:34 +0000 |
commit | 98561024ac791d9aa5caee0700f9cb55188fa266 (patch) | |
tree | 6cb7883d9db8397d9bde952dab6df360f472b9a8 /libavformat/rtp_internal.h | |
parent | b75c8d16e7d81010fe9c01c8b24d6d5da1a35a7a (diff) | |
download | ffmpeg-98561024ac791d9aa5caee0700f9cb55188fa266.tar.gz |
Move the RTP packetization code for MPEG12 video in its own file (rtp_mpv.c)
Originally committed as revision 10201 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat/rtp_internal.h')
-rw-r--r-- | libavformat/rtp_internal.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libavformat/rtp_internal.h b/libavformat/rtp_internal.h index 882098faba..b03f74e861 100644 --- a/libavformat/rtp_internal.h +++ b/libavformat/rtp_internal.h @@ -110,5 +110,7 @@ struct RTPDemuxContext { extern RTPDynamicProtocolHandler *RTPFirstDynamicPayloadHandler; int rtsp_next_attr_and_value(const char **p, char *attr, int attr_size, char *value, int value_size); ///< from rtsp.c, but used by rtp dynamic protocol handlers. + +void ff_rtp_send_data(AVFormatContext *s1, const uint8_t *buf1, int len, int m); #endif /* RTP_INTERNAL_H */ |