summaryrefslogtreecommitdiff
path: root/libavfilter/vf_hflip.c
diff options
context:
space:
mode:
authorStefano Sabatini <stefano.sabatini-lala@poste.it>2010-08-20 16:52:38 +0000
committerStefano Sabatini <stefano.sabatini-lala@poste.it>2010-08-20 16:52:38 +0000
commite34433612f475cd940487a2cd14851b0eb7e47b0 (patch)
treed048e5d68a2a8129aaaf7ed346375c2f7d473a47 /libavfilter/vf_hflip.c
parentd1a991f23d45e58aa24b70a1c2f0618e642b2abe (diff)
Rename av_fill_image_max_pixstep() to av_fill_image_max_pixsteps().
The plural form is preferred as it is more consistent with the other functions: av_fill_image_linesizes() av_fill_image_pointers() and looks semantically more correct as it fills an array of elements. Originally committed as revision 24851 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavfilter/vf_hflip.c')
-rw-r--r--libavfilter/vf_hflip.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavfilter/vf_hflip.c b/libavfilter/vf_hflip.c
index 9514689e3f..acdfe8cffd 100644
--- a/libavfilter/vf_hflip.c
+++ b/libavfilter/vf_hflip.c
@@ -70,7 +70,7 @@ static int config_props(AVFilterLink *inlink)
FlipContext *flip = inlink->dst->priv;
const AVPixFmtDescriptor *pix_desc = &av_pix_fmt_descriptors[inlink->format];
- av_fill_image_max_pixstep(flip->max_step, NULL, pix_desc);
+ av_fill_image_max_pixsteps(flip->max_step, NULL, pix_desc);
flip->hsub = av_pix_fmt_descriptors[inlink->format].log2_chroma_w;
flip->vsub = av_pix_fmt_descriptors[inlink->format].log2_chroma_h;