diff options
author | Reimar Döffinger <Reimar.Doeffinger@gmx.de> | 2009-09-05 16:41:20 +0000 |
---|---|---|
committer | Reimar Döffinger <Reimar.Doeffinger@gmx.de> | 2009-09-05 16:41:20 +0000 |
commit | 8444059fb38301645bfe3f89e39424445899529f (patch) | |
tree | e078f4587fd9aed00f9f3b0d321daaafacfdc251 /libavcodec | |
parent | 61e8efd35eb3045300003ded688accd0f1207028 (diff) | |
download | ffmpeg-8444059fb38301645bfe3f89e39424445899529f.tar.gz |
Remove useless ulti_decode_end function.
Originally committed as revision 19770 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec')
-rw-r--r-- | libavcodec/ulti.c | 9 |
1 files changed, 1 insertions, 8 deletions
diff --git a/libavcodec/ulti.c b/libavcodec/ulti.c index ac21f41541..f58874a607 100644 --- a/libavcodec/ulti.c +++ b/libavcodec/ulti.c @@ -394,13 +394,6 @@ static int ulti_decode_frame(AVCodecContext *avctx, return buf_size; } -static av_cold int ulti_decode_end(AVCodecContext *avctx) -{ -/* UltimotionDecodeContext *s = avctx->priv_data;*/ - - return 0; -} - AVCodec ulti_decoder = { "ultimotion", CODEC_TYPE_VIDEO, @@ -408,7 +401,7 @@ AVCodec ulti_decoder = { sizeof(UltimotionDecodeContext), ulti_decode_init, NULL, - ulti_decode_end, + NULL, ulti_decode_frame, CODEC_CAP_DR1, NULL, |