summaryrefslogtreecommitdiff
path: root/libavcodec/cyuv.c
diff options
context:
space:
mode:
authorReimar Döffinger <Reimar.Doeffinger@gmx.de>2008-10-02 15:52:12 +0000
committerReimar Döffinger <Reimar.Doeffinger@gmx.de>2008-10-02 15:52:12 +0000
commit529dae12f786ed8840a8ccec75d66c7d27cdf9d9 (patch)
tree9f78a24493530ad5931f1d3206471c7020666322 /libavcodec/cyuv.c
parent9b5ede5b64a81195ed922ce92c7f4e7b185be697 (diff)
Remove useless cyuv_decode_end function
Originally committed as revision 15516 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/cyuv.c')
-rw-r--r--libavcodec/cyuv.c9
1 files changed, 1 insertions, 8 deletions
diff --git a/libavcodec/cyuv.c b/libavcodec/cyuv.c
index d64f6df275..2cfe7b32a9 100644
--- a/libavcodec/cyuv.c
+++ b/libavcodec/cyuv.c
@@ -163,13 +163,6 @@ static int cyuv_decode_frame(AVCodecContext *avctx,
return buf_size;
}
-static av_cold int cyuv_decode_end(AVCodecContext *avctx)
-{
-/* CyuvDecodeContext *s = avctx->priv_data;*/
-
- return 0;
-}
-
AVCodec cyuv_decoder = {
"cyuv",
CODEC_TYPE_VIDEO,
@@ -177,7 +170,7 @@ AVCodec cyuv_decoder = {
sizeof(CyuvDecodeContext),
cyuv_decode_init,
NULL,
- cyuv_decode_end,
+ NULL,
cyuv_decode_frame,
CODEC_CAP_DR1,
NULL,