1
0
mirror of https://github.com/FFmpeg/FFmpeg.git synced 2025-11-29 05:57:37 +02:00

avcodec/codec_internal: Rename AVCodecDefault->FFCodecDefault

This structure is no longer declared in a public header,
so using an FF-prefix is more appropriate.

Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
This commit is contained in:
Andreas Rheinhardt
2022-03-16 21:26:11 +01:00
parent 20f9727018
commit 5aabb2596f
51 changed files with 53 additions and 53 deletions

View File

@@ -79,10 +79,10 @@
*/
#define FF_CODEC_TAGS_END -1
typedef struct AVCodecDefault {
typedef struct FFCodecDefault {
const char *key;
const char *value;
} AVCodecDefault;
} FFCodecDefault;
struct AVCodecContext;
struct AVSubtitle;
@@ -122,7 +122,7 @@ typedef struct FFCodec {
/**
* Private codec-specific defaults.
*/
const AVCodecDefault *defaults;
const FFCodecDefault *defaults;
/**
* Initialize codec static data, called from av_codec_iterate().