diff options
author | Matthieu Bouron <matthieu.bouron@gmail.com> | 2013-01-04 22:08:12 +0100 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2013-01-05 05:21:44 +0100 |
commit | bbab9cceb9534c2f25615e5718e809e9fd819078 (patch) | |
tree | c52186033bd87117550fc4c4e0e72468cce48e7f | |
parent | 498e1c6bb963eb7e611ba72a9c2ecad9b306e6b0 (diff) | |
download | ffmpeg-bbab9cceb9534c2f25615e5718e809e9fd819078.tar.gz |
lavfi/drawutils: fix typo
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
-rw-r--r-- | libavfilter/drawutils.h | 4 |
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; |