[FFmpeg-cvslog] avfilter/vf_tinterlace: remove unused variable

Michael Niedermayer git at videolan.org
Sun Nov 16 01:11:55 CET 2014


ffmpeg | branch: master | Michael Niedermayer <michaelni at gmx.at> | Sun Nov 16 01:06:18 2014 +0100| [08ee02deca81fe4c4db356f89132b0f87deffeb6] | committer: Michael Niedermayer

avfilter/vf_tinterlace: remove unused variable

Signed-off-by: Michael Niedermayer <michaelni at gmx.at>

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=08ee02deca81fe4c4db356f89132b0f87deffeb6
---

 libavfilter/vf_tinterlace.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/libavfilter/vf_tinterlace.c b/libavfilter/vf_tinterlace.c
index 2a5f3d9..133f073 100644
--- a/libavfilter/vf_tinterlace.c
+++ b/libavfilter/vf_tinterlace.c
@@ -180,7 +180,7 @@ void copy_picture_field(TInterlaceContext *tinterlace,
     const AVPixFmtDescriptor *desc = av_pix_fmt_desc_get(format);
     int plane, vsub = desc->log2_chroma_h;
     int k = src_field == FIELD_UPPER_AND_LOWER ? 1 : 2;
-    int h, i;
+    int h;
 
     for (plane = 0; plane < desc->nb_components; plane++) {
         int lines = plane == 1 || plane == 2 ? FF_CEIL_RSHIFT(src_h, vsub) : src_h;



More information about the ffmpeg-cvslog mailing list