diff options
author | Stefano Sabatini <stefano.sabatini-lala@poste.it> | 2010-08-20 16:52:38 +0000 |
---|---|---|
committer | Stefano Sabatini <stefano.sabatini-lala@poste.it> | 2010-08-20 16:52:38 +0000 |
commit | e34433612f475cd940487a2cd14851b0eb7e47b0 (patch) | |
tree | d048e5d68a2a8129aaaf7ed346375c2f7d473a47 /libavcore/imgutils.h | |
parent | d1a991f23d45e58aa24b70a1c2f0618e642b2abe (diff) | |
download | ffmpeg-e34433612f475cd940487a2cd14851b0eb7e47b0.tar.gz |
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 'libavcore/imgutils.h')
-rw-r--r-- | libavcore/imgutils.h | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/libavcore/imgutils.h b/libavcore/imgutils.h index cca0085d3a..174a179009 100644 --- a/libavcore/imgutils.h +++ b/libavcore/imgutils.h @@ -36,27 +36,27 @@ * byte of the successive group in the same plane for the same * component. * - * @param max_pixstep an array which is filled with the max pixel step + * @param max_pixsteps an array which is filled with the max pixel step * for each plane. Since a plane may contain different pixel - * components, the computed max_pixstep[plane] is relative to the + * components, the computed max_pixsteps[plane] is relative to the * component in the plane with the max pixel step. - * @param max_pixstep_comp an array which is filled with the component + * @param max_pixstep_comps an array which is filled with the component * for each plane which has the max pixel step. May be NULL. */ -static inline void av_fill_image_max_pixstep(int max_pixstep[4], int max_pixstep_comp[4], - const AVPixFmtDescriptor *pixdesc) +static inline void av_fill_image_max_pixsteps(int max_pixsteps[4], int max_pixstep_comps[4], + const AVPixFmtDescriptor *pixdesc) { int i; - memset(max_pixstep, 0, 4*sizeof(max_pixstep[0])); - if (max_pixstep_comp) - memset(max_pixstep_comp, 0, 4*sizeof(max_pixstep_comp[0])); + memset(max_pixsteps, 0, 4*sizeof(max_pixsteps[0])); + if (max_pixstep_comps) + memset(max_pixstep_comps, 0, 4*sizeof(max_pixstep_comps[0])); for (i = 0; i < 4; i++) { const AVComponentDescriptor *comp = &(pixdesc->comp[i]); - if ((comp->step_minus1+1) > max_pixstep[comp->plane]) { - max_pixstep[comp->plane] = comp->step_minus1+1; - if (max_pixstep_comp) - max_pixstep_comp[comp->plane] = i; + if ((comp->step_minus1+1) > max_pixsteps[comp->plane]) { + max_pixsteps[comp->plane] = comp->step_minus1+1; + if (max_pixstep_comps) + max_pixstep_comps[comp->plane] = i; } } } |