add a ff_ prefix to the now exported mpeg1_find_frame_end() function

Originally committed as revision 8902 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
Aurelien Jacobs
2007-05-05 18:25:02 +00:00
parent 7f50d4ac51
commit 95dca03f77
3 changed files with 4 additions and 4 deletions

View File

@@ -138,7 +138,7 @@ static int mpegvideo_parse(AVCodecParserContext *s,
if(s->flags & PARSER_FLAG_COMPLETE_FRAMES){
next= buf_size;
}else{
next= mpeg1_find_frame_end(pc, buf, buf_size);
next= ff_mpeg1_find_frame_end(pc, buf, buf_size);
if (ff_combine_frame(pc, next, (uint8_t **)&buf, &buf_size) < 0) {
*poutbuf = NULL;