diff options
author | Andreas Rheinhardt <andreas.rheinhardt@gmail.com> | 2021-03-07 00:28:14 +0100 |
---|---|---|
committer | James Almer <jamrial@gmail.com> | 2021-04-27 10:43:16 -0300 |
commit | e5af9203098a889f36b759652615046254d45102 (patch) | |
tree | 5b27c29186fc551d4d40669039fb49ab04224baf /libavcodec/mpegvideo_parser.c | |
parent | e625ae609206e0550ff733965c6f5447579320aa (diff) | |
download | ffmpeg-e5af9203098a889f36b759652615046254d45102.tar.gz |
avcodec: Move all AVCodecParser.split functions to remove_extradata_bsf
The remove_extradata bsf is the only user of these functions.
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@gmail.com>
Signed-off-by: James Almer <jamrial@gmail.com>
Diffstat (limited to 'libavcodec/mpegvideo_parser.c')
-rw-r--r-- | libavcodec/mpegvideo_parser.c | 18 |
1 files changed, 0 insertions, 18 deletions
diff --git a/libavcodec/mpegvideo_parser.c b/libavcodec/mpegvideo_parser.c index 4e4f569b13..7864224643 100644 --- a/libavcodec/mpegvideo_parser.c +++ b/libavcodec/mpegvideo_parser.c @@ -213,23 +213,6 @@ static int mpegvideo_parse(AVCodecParserContext *s, return next; } -static int mpegvideo_split(AVCodecContext *avctx, - const uint8_t *buf, int buf_size) -{ - int i; - uint32_t state= -1; - int found=0; - - for(i=0; i<buf_size; i++){ - state= (state<<8) | buf[i]; - if(state == 0x1B3){ - found=1; - }else if(found && state != 0x1B5 && state < 0x200 && state >= 0x100) - return i-3; - } - return 0; -} - static int mpegvideo_parse_init(AVCodecParserContext *s) { s->pict_type = AV_PICTURE_TYPE_NONE; // first frame might be partial @@ -242,5 +225,4 @@ const AVCodecParser ff_mpegvideo_parser = { .parser_init = mpegvideo_parse_init, .parser_parse = mpegvideo_parse, .parser_close = ff_parse_close, - .split = mpegvideo_split, }; |