summaryrefslogtreecommitdiff
path: root/libavformat/rtpenc_mpv.c
diff options
context:
space:
mode:
authorAnton Khirnov <anton@khirnov.net>2011-10-17 09:51:55 +0200
committerAnton Khirnov <anton@khirnov.net>2011-10-20 21:06:58 +0200
commit773375c3d04bc3436563d7128311f06767432e22 (patch)
tree088138e11f327e51f11e5ee6192a30967f205bfe /libavformat/rtpenc_mpv.c
parent357db4c263bb7edfd9790414f0f378e752f924e9 (diff)
lavc: rename ff_find_start_code to avpriv_mpv_find_start_code
It's used in lavf.
Diffstat (limited to 'libavformat/rtpenc_mpv.c')
-rw-r--r--libavformat/rtpenc_mpv.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/rtpenc_mpv.c b/libavformat/rtpenc_mpv.c
index f6a5d7726a..1c67f9593b 100644
--- a/libavformat/rtpenc_mpv.c
+++ b/libavformat/rtpenc_mpv.c
@@ -56,7 +56,7 @@ void ff_rtp_send_mpegvideo(AVFormatContext *s1, const uint8_t *buf1, int size)
r1 = buf1;
while (1) {
start_code = -1;
- r = ff_find_start_code(r1, end, &start_code);
+ r = avpriv_mpv_find_start_code(r1, end, &start_code);
if((start_code & 0xFFFFFF00) == 0x100) {
/* New start code found */
if (start_code == 0x100) {