Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mpc-hc/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatthieu Bouron <matthieu.bouron@gmail.com>2013-01-05 01:08:12 +0400
committerMichael Niedermayer <michaelni@gmx.at>2013-01-05 08:21:44 +0400
commitbbab9cceb9534c2f25615e5718e809e9fd819078 (patch)
treec52186033bd87117550fc4c4e0e72468cce48e7f /libavfilter
parent498e1c6bb963eb7e611ba72a9c2ecad9b306e6b0 (diff)
lavfi/drawutils: fix typo
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavfilter')
-rw-r--r--libavfilter/drawutils.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/libavfilter/drawutils.h b/libavfilter/drawutils.h
index df4169575b..5ffffe77c1 100644
--- a/libavfilter/drawutils.h
+++ b/libavfilter/drawutils.h
@@ -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;