summaryrefslogtreecommitdiff
path: root/libavcodec/mpeg4video_parser.c
diff options
context:
space:
mode:
authorJames Almer <jamrial@gmail.com>2023-01-09 11:22:39 -0300
committerAnton Khirnov <anton@khirnov.net>2023-02-09 15:35:14 +0100
commit3ceffe783965767e62d59e8e68ecd265c98460ec (patch)
tree969d9bac9d858f6749ab62180960cf3af9cc4df6 /libavcodec/mpeg4video_parser.c
parent5f9e848e686a3c0795939809712b260af5c1adb8 (diff)
downloadffmpeg-3ceffe783965767e62d59e8e68ecd265c98460ec.tar.gz
avcodec: remove FF_API_FLAG_TRUNCATED
Signed-off-by: James Almer <jamrial@gmail.com>
Diffstat (limited to 'libavcodec/mpeg4video_parser.c')
-rw-r--r--libavcodec/mpeg4video_parser.c12
1 files changed, 0 insertions, 12 deletions
diff --git a/libavcodec/mpeg4video_parser.c b/libavcodec/mpeg4video_parser.c
index 3beb5f6dae..28353aa146 100644
--- a/libavcodec/mpeg4video_parser.c
+++ b/libavcodec/mpeg4video_parser.c
@@ -27,10 +27,6 @@
#include "mpegvideo.h"
#include "mpeg4videodec.h"
#include "mpeg4videodefs.h"
-#if FF_API_FLAG_TRUNCATED
-/* Nuke this header when removing FF_API_FLAG_TRUNCATED */
-#include "mpeg4video_parser.h"
-#endif
struct Mp4vParseContext {
ParseContext pc;
@@ -38,15 +34,11 @@ struct Mp4vParseContext {
int first_picture;
};
-#if FF_API_FLAG_TRUNCATED
-int ff_mpeg4_find_frame_end(ParseContext *pc, const uint8_t *buf, int buf_size)
-#else
/**
* Find the end of the current frame in the bitstream.
* @return the position of the first byte of the next frame, or -1
*/
static int mpeg4_find_frame_end(ParseContext *pc, const uint8_t *buf, int buf_size)
-#endif
{
int vop_found, i;
uint32_t state;
@@ -148,11 +140,7 @@ static int mpeg4video_parse(AVCodecParserContext *s,
if (s->flags & PARSER_FLAG_COMPLETE_FRAMES) {
next = buf_size;
} else {
-#if FF_API_FLAG_TRUNCATED
- next = ff_mpeg4_find_frame_end(pc, buf, buf_size);
-#else
next = mpeg4_find_frame_end(pc, buf, buf_size);
-#endif
if (ff_combine_frame(pc, next, &buf, &buf_size) < 0) {
*poutbuf = NULL;