diff mbox series

[FFmpeg-devel] avcodec/parser: Remove declaration of inexistent function

Message ID GV1P250MB0737739482AC5951FA8CD21E8F519@GV1P250MB0737.EURP250.PROD.OUTLOOK.COM
State Accepted
Commit 7cd252ee41ddc693fa140c5b5eb472b6d6f27f9e
Headers show
Series [FFmpeg-devel] avcodec/parser: Remove declaration of inexistent function | expand

Checks

Context Check Description
andriy/make_x86 success Make finished
andriy/make_fate_x86 success Make fate finished

Commit Message

Andreas Rheinhardt Sept. 23, 2022, 8:30 p.m. UTC
Forgotten in e5af9203098a889f36b759652615046254d45102.

Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
---
 libavcodec/parser.h | 2 --
 1 file changed, 2 deletions(-)
diff mbox series

Patch

diff --git a/libavcodec/parser.h b/libavcodec/parser.h
index ef35547e9b..2cee5ae4ff 100644
--- a/libavcodec/parser.h
+++ b/libavcodec/parser.h
@@ -45,8 +45,6 @@  typedef struct ParseContext{
  *         AVERROR(ENOMEM) if there was a memory allocation error
  */
 int ff_combine_frame(ParseContext *pc, int next, const uint8_t **buf, int *buf_size);
-int ff_mpeg4video_split(AVCodecContext *avctx, const uint8_t *buf,
-                        int buf_size);
 void ff_parse_close(AVCodecParserContext *s);
 
 /**