diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2013-07-17 16:53:22 +0200 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2013-07-17 16:59:29 +0200 |
commit | a0b7e73f8baedda405ba0880957ccaaa5dde0479 (patch) | |
tree | c28fa2c12b8e838813ede64835348f6105733f68 /libswscale | |
parent | 33968c201cc8194864b2bb2bc7c3f0867d775e02 (diff) | |
download | ffmpeg-a0b7e73f8baedda405ba0880957ccaaa5dde0479.tar.gz |
swscale/options: fix copy and paste typo
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libswscale')
-rw-r--r-- | libswscale/options.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libswscale/options.c b/libswscale/options.c index 26e326608f..173993c01c 100644 --- a/libswscale/options.c +++ b/libswscale/options.c @@ -66,8 +66,8 @@ static const AVOption options[] = { { "src_v_chr_pos", "source vertical chroma position in luma grid/256" , OFFSET(src_v_chr_pos), AV_OPT_TYPE_INT, { .i64 = -1 }, -1, 512, VE }, { "src_h_chr_pos", "source horizontal chroma position in luma grid/256", OFFSET(src_h_chr_pos), AV_OPT_TYPE_INT, { .i64 = -1 }, -1, 512, VE }, - { "dst_v_chr_pos", "source vertical chroma position in luma grid/256" , OFFSET(dst_v_chr_pos), AV_OPT_TYPE_INT, { .i64 = -1 }, -1, 512, VE }, - { "dst_h_chr_pos", "source horizontal chroma position in luma grid/256", OFFSET(dst_h_chr_pos), AV_OPT_TYPE_INT, { .i64 = -1 }, -1, 512, VE }, + { "dst_v_chr_pos", "destination vertical chroma position in luma grid/256" , OFFSET(dst_v_chr_pos), AV_OPT_TYPE_INT, { .i64 = -1 }, -1, 512, VE }, + { "dst_h_chr_pos", "destination horizontal chroma position in luma grid/256", OFFSET(dst_h_chr_pos), AV_OPT_TYPE_INT, { .i64 = -1 }, -1, 512, VE }, { NULL } }; |