diff options
author | Andreas Rheinhardt <andreas.rheinhardt@outlook.com> | 2023-08-02 09:13:15 +0200 |
---|---|---|
committer | Andreas Rheinhardt <andreas.rheinhardt@outlook.com> | 2023-08-05 09:40:06 +0200 |
commit | 7469f2ec0ab31c91b409644867c0e977db50a4b0 (patch) | |
tree | 303e0199eba4311952ea5fbe945c25b63a0c7616 /libavcodec/avcodec.h | |
parent | 7aa9684db39a8ecf444b3af1c74c225757d8e49f (diff) | |
download | ffmpeg-7469f2ec0ab31c91b409644867c0e977db50a4b0.tar.gz |
avcodec/avcodec: Remove unnecessary forward declaration
This would only be necessary if this header declared a function
that takes a (pointer to) struct AVCodecContext as parameter.
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
Diffstat (limited to 'libavcodec/avcodec.h')
-rw-r--r-- | libavcodec/avcodec.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/libavcodec/avcodec.h b/libavcodec/avcodec.h index fe41ecc3c9..b1a7c3069d 100644 --- a/libavcodec/avcodec.h +++ b/libavcodec/avcodec.h @@ -421,8 +421,6 @@ typedef struct RcOverride{ */ #define AV_GET_ENCODE_BUFFER_FLAG_REF (1 << 0) -struct AVCodecInternal; - /** * main external API structure. * New fields can be added to the end with minor version bumps. |