mirror of
https://git.ffmpeg.org/ffmpeg.git
synced 2025-01-12 18:31:37 +00:00
avcodec/Makefile, v408(dec|enc): Remove remnants of AYUV codecs
Forgotten in 9ee59b63f5
.
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
This commit is contained in:
parent
b2003d6dcc
commit
db2cd9cabf
@ -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
|
||||
|
@ -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"
|
||||
@ -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"),
|
||||
@ -84,4 +81,3 @@ const FFCodec ff_v408_decoder = {
|
||||
FF_CODEC_DECODE_CB(v408_decode_frame),
|
||||
.p.capabilities = AV_CODEC_CAP_DR1,
|
||||
};
|
||||
#endif
|
||||
|
@ -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"
|
||||
@ -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"),
|
||||
@ -83,4 +79,3 @@ const FFCodec ff_v408_encoder = {
|
||||
FF_CODEC_ENCODE_CB(v408_encode_frame),
|
||||
.p.pix_fmts = pix_fmt,
|
||||
};
|
||||
#endif
|
||||
|
Loading…
Reference in New Issue
Block a user