aboutsummaryrefslogtreecommitdiffstats
path: root/libavcodec/xbmenc.c
diff options
context:
space:
mode:
authorPaul B Mahol <onemda@gmail.com>2013-03-30 02:54:30 +0000
committerPaul B Mahol <onemda@gmail.com>2013-04-04 22:43:26 +0000
commitfaf689c7ebc914ba64e43df99991d4819b3c433c (patch)
tree9e9a5611864a816a5e34db26372cdc7bd89bb8d1 /libavcodec/xbmenc.c
parent08b31a72dbcf2935e871ef7c1ffa96ae200f78aa (diff)
downloadandroid_external_ffmpeg-faf689c7ebc914ba64e43df99991d4819b3c433c.tar.gz
android_external_ffmpeg-faf689c7ebc914ba64e43df99991d4819b3c433c.tar.bz2
android_external_ffmpeg-faf689c7ebc914ba64e43df99991d4819b3c433c.zip
xbmenc: remove unused code
Signed-off-by: Paul B Mahol <onemda@gmail.com>
Diffstat (limited to 'libavcodec/xbmenc.c')
-rw-r--r--libavcodec/xbmenc.c19
1 files changed, 0 insertions, 19 deletions
diff --git a/libavcodec/xbmenc.c b/libavcodec/xbmenc.c
index 8e399695c1..e7cec1d069 100644
--- a/libavcodec/xbmenc.c
+++ b/libavcodec/xbmenc.c
@@ -24,16 +24,6 @@
#include "internal.h"
#include "mathops.h"
-static av_cold int xbm_encode_init(AVCodecContext *avctx)
-{
- avctx->coded_frame = avcodec_alloc_frame();
- if (!avctx->coded_frame)
- return AVERROR(ENOMEM);
- avctx->coded_frame->pict_type = AV_PICTURE_TYPE_I;
-
- return 0;
-}
-
static int xbm_encode_frame(AVCodecContext *avctx, AVPacket *pkt,
const AVFrame *p, int *got_packet)
{
@@ -65,20 +55,11 @@ static int xbm_encode_frame(AVCodecContext *avctx, AVPacket *pkt,
return 0;
}
-static av_cold int xbm_encode_close(AVCodecContext *avctx)
-{
- av_freep(&avctx->coded_frame);
-
- return 0;
-}
-
AVCodec ff_xbm_encoder = {
.name = "xbm",
.type = AVMEDIA_TYPE_VIDEO,
.id = AV_CODEC_ID_XBM,
- .init = xbm_encode_init,
.encode2 = xbm_encode_frame,
- .close = xbm_encode_close,
.pix_fmts = (const enum AVPixelFormat[]) { AV_PIX_FMT_MONOWHITE,
AV_PIX_FMT_NONE },
.long_name = NULL_IF_CONFIG_SMALL("XBM (X BitMap) image"),