diff options
author | Anton Khirnov <anton@khirnov.net> | 2011-10-17 09:51:55 +0200 |
---|---|---|
committer | Anton Khirnov <anton@khirnov.net> | 2011-10-20 21:06:58 +0200 |
commit | 773375c3d04bc3436563d7128311f06767432e22 (patch) | |
tree | 088138e11f327e51f11e5ee6192a30967f205bfe /libavcodec/cavsdec.c | |
parent | 357db4c263bb7edfd9790414f0f378e752f924e9 (diff) | |
download | ffmpeg-773375c3d04bc3436563d7128311f06767432e22.tar.gz |
lavc: rename ff_find_start_code to avpriv_mpv_find_start_code
It's used in lavf.
Diffstat (limited to 'libavcodec/cavsdec.c')
-rw-r--r-- | libavcodec/cavsdec.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/cavsdec.c b/libavcodec/cavsdec.c index 88034068ff..ed3538c121 100644 --- a/libavcodec/cavsdec.c +++ b/libavcodec/cavsdec.c @@ -663,7 +663,7 @@ static int cavs_decode_frame(AVCodecContext * avctx,void *data, int *data_size, buf_ptr = buf; buf_end = buf + buf_size; for(;;) { - buf_ptr = ff_find_start_code(buf_ptr,buf_end, &stc); + buf_ptr = avpriv_mpv_find_start_code(buf_ptr,buf_end, &stc); if((stc & 0xFFFFFE00) || buf_ptr == buf_end) return FFMAX(0, buf_ptr - buf - s->parse_context.last_index); input_size = (buf_end - buf_ptr)*8; |