mirror of https://gitee.com/openkylin/linux.git
[media] media: v4l2-core: v4l2-dv-timings.c: Cleaning up code wrong value used in aspect ratio
Wrong value used in same cases for the aspect ratio. Signed-off-by: Rickard Strandqvist <rickard_strandqvist@spectrumdigital.se> Acked-by: Lad, Prabhakar <prabhakar.csengg@gmail.com> Cc: stable@vger.kernel.org # for v3.12 and up Signed-off-by: Hans Verkuil <hans.verkuil@cisco.com> Signed-off-by: Mauro Carvalho Chehab <m.chehab@samsung.com>
This commit is contained in:
parent
0c76e68d6e
commit
f71920efb1
|
@ -610,10 +610,10 @@ struct v4l2_fract v4l2_calc_aspect_ratio(u8 hor_landscape, u8 vert_portrait)
|
|||
aspect.denominator = 9;
|
||||
} else if (ratio == 34) {
|
||||
aspect.numerator = 4;
|
||||
aspect.numerator = 3;
|
||||
aspect.denominator = 3;
|
||||
} else if (ratio == 68) {
|
||||
aspect.numerator = 15;
|
||||
aspect.numerator = 9;
|
||||
aspect.denominator = 9;
|
||||
} else {
|
||||
aspect.numerator = hor_landscape + 99;
|
||||
aspect.denominator = 100;
|
||||
|
|
Loading…
Reference in New Issue