[FFmpeg-cvslog] lavfi/kerndeint: remove unused pixel_step.

Clément Bœsch git at videolan.org
Sun Jan 6 19:01:59 CET 2013


ffmpeg | branch: master | Clément Bœsch <ubitux at gmail.com> | Sun Jan  6 18:54:58 2013 +0100| [caee85bbce34ae3813a9c94eddb94da96854d4ac] | committer: Clément Bœsch

lavfi/kerndeint: remove unused pixel_step.

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

 libavfilter/vf_kerndeint.c |    2 --
 1 file changed, 2 deletions(-)

diff --git a/libavfilter/vf_kerndeint.c b/libavfilter/vf_kerndeint.c
index e9598f9..382b8a7 100644
--- a/libavfilter/vf_kerndeint.c
+++ b/libavfilter/vf_kerndeint.c
@@ -42,7 +42,6 @@ typedef struct {
     int           vsub;
     uint8_t       *tmp_data [4];  ///< temporary plane data buffer
     int           tmp_bwidth[4];  ///< temporary plane byte width
-    int           pixel_step;
 } KerndeintContext;
 
 #define OFFSET(x) offsetof(KerndeintContext, x)
@@ -101,7 +100,6 @@ static int config_props(AVFilterLink *inlink)
     int ret;
 
     kerndeint->vsub = desc->log2_chroma_h;
-    kerndeint->pixel_step = av_get_bits_per_pixel(desc) >> 3;
 
     ret = av_image_alloc(kerndeint->tmp_data, kerndeint->tmp_bwidth,
                           inlink->w, inlink->h, inlink->format, 1);



More information about the ffmpeg-cvslog mailing list