OSDN Git Service

libxvid: check & clear encoder_handle
authorMichael Niedermayer <michaelni@gmx.at>
Sat, 2 Mar 2013 19:32:21 +0000 (20:32 +0100)
committerMichael Niedermayer <michaelni@gmx.at>
Sat, 2 Mar 2013 19:32:21 +0000 (20:32 +0100)
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
libavcodec/libxvid.c

index 9c86e3c..fac2e8c 100644 (file)
@@ -735,7 +735,9 @@ static int xvid_encode_frame(AVCodecContext *avctx, AVPacket *pkt,
 static av_cold int xvid_encode_close(AVCodecContext *avctx) {
     struct xvid_context *x = avctx->priv_data;
 
-    xvid_encore(x->encoder_handle, XVID_ENC_DESTROY, NULL, NULL);
+    if(x->encoder_handle)
+        xvid_encore(x->encoder_handle, XVID_ENC_DESTROY, NULL, NULL);
+    x->encoder_handle = NULL;
 
     av_freep(&avctx->extradata);
     if( x->twopassbuffer != NULL ) {