comparison ulti.c @ 10132:a16f74116015 libavcodec

Remove useless ulti_decode_end function.
author reimar
date Sat, 05 Sep 2009 16:41:20 +0000
parents 5da84f0d0a55
children 136334ad62b3
comparison
equal deleted inserted replaced
10131:4f974b8d8851 10132:a16f74116015
392 *(AVFrame*)data= s->frame; 392 *(AVFrame*)data= s->frame;
393 393
394 return buf_size; 394 return buf_size;
395 } 395 }
396 396
397 static av_cold int ulti_decode_end(AVCodecContext *avctx)
398 {
399 /* UltimotionDecodeContext *s = avctx->priv_data;*/
400
401 return 0;
402 }
403
404 AVCodec ulti_decoder = { 397 AVCodec ulti_decoder = {
405 "ultimotion", 398 "ultimotion",
406 CODEC_TYPE_VIDEO, 399 CODEC_TYPE_VIDEO,
407 CODEC_ID_ULTI, 400 CODEC_ID_ULTI,
408 sizeof(UltimotionDecodeContext), 401 sizeof(UltimotionDecodeContext),
409 ulti_decode_init, 402 ulti_decode_init,
410 NULL, 403 NULL,
411 ulti_decode_end, 404 NULL,
412 ulti_decode_frame, 405 ulti_decode_frame,
413 CODEC_CAP_DR1, 406 CODEC_CAP_DR1,
414 NULL, 407 NULL,
415 .long_name = NULL_IF_CONFIG_SMALL("IBM UltiMotion"), 408 .long_name = NULL_IF_CONFIG_SMALL("IBM UltiMotion"),
416 }; 409 };