Commit 8ac0209d authored by reimar's avatar reimar

Remove useless ulti_decode_end function.


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@19770 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 44f1715f
...@@ -394,13 +394,6 @@ static int ulti_decode_frame(AVCodecContext *avctx, ...@@ -394,13 +394,6 @@ static int ulti_decode_frame(AVCodecContext *avctx,
return buf_size; return buf_size;
} }
static av_cold int ulti_decode_end(AVCodecContext *avctx)
{
/* UltimotionDecodeContext *s = avctx->priv_data;*/
return 0;
}
AVCodec ulti_decoder = { AVCodec ulti_decoder = {
"ultimotion", "ultimotion",
CODEC_TYPE_VIDEO, CODEC_TYPE_VIDEO,
...@@ -408,7 +401,7 @@ AVCodec ulti_decoder = { ...@@ -408,7 +401,7 @@ AVCodec ulti_decoder = {
sizeof(UltimotionDecodeContext), sizeof(UltimotionDecodeContext),
ulti_decode_init, ulti_decode_init,
NULL, NULL,
ulti_decode_end, NULL,
ulti_decode_frame, ulti_decode_frame,
CODEC_CAP_DR1, CODEC_CAP_DR1,
NULL, NULL,
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment