summaryrefslogtreecommitdiff
path: root/libavformat/rtp_mpv.c
diff options
context:
space:
mode:
authorLuca Abeni <lucabe72@email.it>2009-02-06 10:35:52 +0000
committerLuca Abeni <lucabe72@email.it>2009-02-06 10:35:52 +0000
commit302879cb36fe59e7341690d91e0e656b02ba07a1 (patch)
treea8e4e0c1984dca69cdba723bcc6374d0951350f9 /libavformat/rtp_mpv.c
parent1a45a9f4c06bbbaa322ba744e658491df44f2c2a (diff)
Split rtp.h in rtp.h, rtpdec.h, and rtpenc.h
Originally committed as revision 17016 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat/rtp_mpv.c')
-rw-r--r--libavformat/rtp_mpv.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libavformat/rtp_mpv.c b/libavformat/rtp_mpv.c
index 2221dd2489..f3f4501367 100644
--- a/libavformat/rtp_mpv.c
+++ b/libavformat/rtp_mpv.c
@@ -22,13 +22,13 @@
#include "libavcodec/mpegvideo.h"
#include "avformat.h"
-#include "rtp.h"
+#include "rtpenc.h"
/* NOTE: a single frame must be passed with sequence header if
needed. XXX: use slices. */
void ff_rtp_send_mpegvideo(AVFormatContext *s1, const uint8_t *buf1, int size)
{
- RTPDemuxContext *s = s1->priv_data;
+ RTPMuxContext *s = s1->priv_data;
int len, h, max_packet_size;
uint8_t *q;
int begin_of_slice, end_of_slice, frame_type, temporal_reference;