diff options
author | Anton Khirnov <anton@khirnov.net> | 2012-11-19 18:09:27 +0100 |
---|---|---|
committer | Anton Khirnov <anton@khirnov.net> | 2013-01-14 11:38:45 +0100 |
commit | 6b3a1229bb30259332dd6e54a398c9c886012a67 (patch) | |
tree | d5224a3bc963caf2da6eb604785d8fc5ee2fb1a3 | |
parent | 74a9a624c5c4d50760d8d57458eba57366f6cb26 (diff) | |
download | ffmpeg-6b3a1229bb30259332dd6e54a398c9c886012a67.tar.gz |
vcr1: remove disabled encoder stub
-rw-r--r-- | libavcodec/vcr1.c | 39 |
1 files changed, 0 insertions, 39 deletions
diff --git a/libavcodec/vcr1.c b/libavcodec/vcr1.c index 2740c29437..d9514693c2 100644 --- a/libavcodec/vcr1.c +++ b/libavcodec/vcr1.c @@ -149,42 +149,3 @@ AVCodec ff_vcr1_decoder = { .capabilities = CODEC_CAP_DR1, .long_name = NULL_IF_CONFIG_SMALL("ATI VCR1"), }; - -/* Disable the encoder. */ -#undef CONFIG_VCR1_ENCODER -#define CONFIG_VCR1_ENCODER 0 - -#if CONFIG_VCR1_ENCODER - -#include "put_bits.h" - -static int vcr1_encode_frame(AVCodecContext *avctx, unsigned char *buf, - int buf_size, void *data) -{ - VCR1Context *const a = avctx->priv_data; - AVFrame *pict = data; - AVFrame *const p = &a->picture; - int size; - - *p = *pict; - p->pict_type = AV_PICTURE_TYPE_I; - p->key_frame = 1; - - avpriv_align_put_bits(&a->pb); - flush_put_bits(&a->pb); - - size = put_bits_count(&a->pb) / 32; - - return size * 4; -} - -AVCodec ff_vcr1_encoder = { - .name = "vcr1", - .type = AVMEDIA_TYPE_VIDEO, - .id = AV_CODEC_ID_VCR1, - .priv_data_size = sizeof(VCR1Context), - .init = vcr1_common_init, - .encode = vcr1_encode_frame, - .long_name = NULL_IF_CONFIG_SMALL("ATI VCR1"), -}; -#endif /* CONFIG_VCR1_ENCODER */ |