[FFmpeg-cvslog] r15201 - trunk/ffmpeg.c
bcoudurier
subversion
Thu Sep 4 23:48:47 CEST 2008
Author: bcoudurier
Date: Thu Sep 4 23:48:46 2008
New Revision: 15201
Log:
print error when deinterlacing fails
Modified:
trunk/ffmpeg.c
Modified: trunk/ffmpeg.c
==============================================================================
--- trunk/ffmpeg.c (original)
+++ trunk/ffmpeg.c Thu Sep 4 23:48:46 2008
@@ -730,6 +730,7 @@ static void pre_process_video_frame(AVIn
if(avpicture_deinterlace(picture2, picture,
dec->pix_fmt, dec->width, dec->height) < 0) {
/* if error, do not deinterlace */
+ fprintf(stderr, "Deinterlacing failed\n");
av_free(buf);
buf = NULL;
picture2 = picture;
More information about the ffmpeg-cvslog
mailing list