diff options
author | Andreas Rheinhardt <andreas.rheinhardt@outlook.com> | 2023-09-04 15:26:38 +0200 |
---|---|---|
committer | Andreas Rheinhardt <andreas.rheinhardt@outlook.com> | 2023-09-07 00:27:52 +0200 |
commit | a7443421f269b957b2a76dbe275ca045468b3f44 (patch) | |
tree | 8878e10430e97fd3f0ccce2c7e2a4306323abbc6 /libavcodec/parsers.c | |
parent | 947d51f32a306741f95c3e8c98b9541c3f9626d8 (diff) | |
download | ffmpeg-a7443421f269b957b2a76dbe275ca045468b3f44.tar.gz |
avcodec/rv34_parser: Merge RV30 and RV40 parsers
They do mostly the same.
Reviewed-by: James Almer <jamrial@gmail.com>
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
Diffstat (limited to 'libavcodec/parsers.c')
-rw-r--r-- | libavcodec/parsers.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/libavcodec/parsers.c b/libavcodec/parsers.c index a663b9e253..5128009cd4 100644 --- a/libavcodec/parsers.c +++ b/libavcodec/parsers.c @@ -66,8 +66,7 @@ extern const AVCodecParser ff_opus_parser; extern const AVCodecParser ff_png_parser; extern const AVCodecParser ff_pnm_parser; extern const AVCodecParser ff_qoi_parser; -extern const AVCodecParser ff_rv30_parser; -extern const AVCodecParser ff_rv40_parser; +extern const AVCodecParser ff_rv34_parser; extern const AVCodecParser ff_sbc_parser; extern const AVCodecParser ff_sipr_parser; extern const AVCodecParser ff_tak_parser; |