summaryrefslogtreecommitdiff
path: root/src/libffmpeg/libavcodec/dv.c
diff options
context:
space:
mode:
authorMiguel Freitas <miguelfreitas@users.sourceforge.net>2004-05-09 23:31:59 +0000
committerMiguel Freitas <miguelfreitas@users.sourceforge.net>2004-05-09 23:31:59 +0000
commit0bacec04673fe7e65cbaf11d9e6a72f5b8e6e1ec (patch)
treeb11f9a4277db39f4157347b4c036cc483ddab18a /src/libffmpeg/libavcodec/dv.c
parent5d083a3cc3978d6050cda4ed3070ddbc8b07021c (diff)
downloadxine-lib-0bacec04673fe7e65cbaf11d9e6a72f5b8e6e1ec.tar.gz
xine-lib-0bacec04673fe7e65cbaf11d9e6a72f5b8e6e1ec.tar.bz2
sync
CVS patchset: 6511 CVS date: 2004/05/09 23:31:59
Diffstat (limited to 'src/libffmpeg/libavcodec/dv.c')
-rw-r--r--src/libffmpeg/libavcodec/dv.c10
1 files changed, 2 insertions, 8 deletions
diff --git a/src/libffmpeg/libavcodec/dv.c b/src/libffmpeg/libavcodec/dv.c
index 5f1eaaa3b..c62c964fb 100644
--- a/src/libffmpeg/libavcodec/dv.c
+++ b/src/libffmpeg/libavcodec/dv.c
@@ -235,12 +235,6 @@ static int dvvideo_init(AVCodecContext *avctx)
return 0;
}
-static int dvvideo_end(AVCodecContext *avctx)
-{
- avcodec_default_free_buffers(avctx);
- return 0;
-}
-
// #define VLC_DEBUG
// #define printf(...) av_log(NULL, AV_LOG_ERROR, __VA_ARGS__)
@@ -954,7 +948,7 @@ AVCodec dvvideo_encoder = {
sizeof(DVVideoContext),
dvvideo_init,
dvvideo_encode_frame,
- dvvideo_end,
+ NULL,
NULL,
CODEC_CAP_DR1,
NULL
@@ -967,7 +961,7 @@ AVCodec dvvideo_decoder = {
sizeof(DVVideoContext),
dvvideo_init,
NULL,
- dvvideo_end,
+ NULL,
dvvideo_decode_frame,
CODEC_CAP_DR1,
NULL