lavfi/drawutils: fix typo

Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
Matthieu Bouron 2013-01-04 22:08:12 +01:00 committed by Michael Niedermayer
parent 498e1c6bb9
commit bbab9cceb9

View File

@ -51,8 +51,8 @@ typedef struct FFDrawContext {
unsigned nb_planes;
int pixelstep[MAX_PLANES]; /*< offset between pixels */
uint8_t comp_mask[MAX_PLANES]; /*< bitmask of used non-alpha components */
uint8_t hsub[MAX_PLANES]; /*< horizontal subsamling */
uint8_t vsub[MAX_PLANES]; /*< vertical subsamling */
uint8_t hsub[MAX_PLANES]; /*< horizontal subsampling */
uint8_t vsub[MAX_PLANES]; /*< vertical subsampling */
uint8_t hsub_max;
uint8_t vsub_max;
} FFDrawContext;