Skip to content

Commit

Permalink
avcodec/Makefile, v408(dec|enc): Remove remnants of AYUV codecs
Browse files Browse the repository at this point in the history
Forgotten in 9ee59b6.

Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
  • Loading branch information
mkver committed May 7, 2024
1 parent b2003d6 commit db2cd9c
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 11 deletions.
2 changes: 0 additions & 2 deletions libavcodec/Makefile
Expand Up @@ -268,8 +268,6 @@ OBJS-$(CONFIG_AVRP_ENCODER) += r210enc.o
OBJS-$(CONFIG_AVS_DECODER) += avs.o
OBJS-$(CONFIG_AVUI_DECODER) += avuidec.o
OBJS-$(CONFIG_AVUI_ENCODER) += avuienc.o
OBJS-$(CONFIG_AYUV_DECODER) += v408dec.o
OBJS-$(CONFIG_AYUV_ENCODER) += v408enc.o
OBJS-$(CONFIG_BETHSOFTVID_DECODER) += bethsoftvideo.o
OBJS-$(CONFIG_BFI_DECODER) += bfi.o
OBJS-$(CONFIG_BINK_DECODER) += bink.o binkdsp.o
Expand Down
4 changes: 0 additions & 4 deletions libavcodec/v408dec.c
Expand Up @@ -19,8 +19,6 @@
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/

#include "config_components.h"

#include "avcodec.h"
#include "codec_internal.h"
#include "decode.h"
Expand Down Expand Up @@ -74,7 +72,6 @@ static int v408_decode_frame(AVCodecContext *avctx, AVFrame *pic,
return avpkt->size;
}

#if CONFIG_V408_DECODER
const FFCodec ff_v408_decoder = {
.p.name = "v408",
CODEC_LONG_NAME("Uncompressed packed QT 4:4:4:4"),
Expand All @@ -84,4 +81,3 @@ const FFCodec ff_v408_decoder = {
FF_CODEC_DECODE_CB(v408_decode_frame),
.p.capabilities = AV_CODEC_CAP_DR1,
};
#endif
5 changes: 0 additions & 5 deletions libavcodec/v408enc.c
Expand Up @@ -20,9 +20,6 @@
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/

#include "config_components.h"

#include "libavutil/intreadwrite.h"
#include "avcodec.h"
#include "codec_internal.h"
#include "encode.h"
Expand Down Expand Up @@ -72,7 +69,6 @@ static int v408_encode_frame(AVCodecContext *avctx, AVPacket *pkt,

static const enum AVPixelFormat pix_fmt[] = { AV_PIX_FMT_YUVA444P, AV_PIX_FMT_NONE };

#if CONFIG_V408_ENCODER
const FFCodec ff_v408_encoder = {
.p.name = "v408",
CODEC_LONG_NAME("Uncompressed packed QT 4:4:4:4"),
Expand All @@ -83,4 +79,3 @@ const FFCodec ff_v408_encoder = {
FF_CODEC_ENCODE_CB(v408_encode_frame),
.p.pix_fmts = pix_fmt,
};
#endif

0 comments on commit db2cd9c

Please sign in to comment.