From: Richard Hirst <richard@sleepie.demon.co.uk>
To: linux-media@vger.kernel.org
Subject: [PATCH] v4lconvert_rotate90() leaves bytesperline wrong
Date: Sat, 20 Feb 2010 23:51:23 +0000 [thread overview]
Message-ID: <4B80757B.5070804@sleepie.demon.co.uk> (raw)
I have a cheap webcam (ID 093a:262a Pixart Imaging, Inc.), and Ubuntu 9.10 64 bit, Skype 2.1.0.81, and lib32v4l-0 version 0.6.0-1. I start skype with LD_PRELOAD=/usr/lib32/libv4l/v4l1compat.so, and the video image is garbled. I believe the problem is that the webcam image starts off at 480x640 and skype asks for YU12 at 320x240 for a test image. This results in v4lconvert_rotate90() being called to rotate the image, and then v4lconvert_reduceandcrop_yuv420() being called to down-size the image from 640x480 to 320x240. Unfortunately v4lconvert_reduceandcrop_yuv420() relies on src_fmt->fmt.pix.bytesperline for the source image, and that is still 480 (should be 640, since the image has been rotated).
This fixes it for me:
--- ori/libv4lconvert/libv4lconvert.c 2010-02-20 22:44:28.000000000 +0000
+++ libv4l-0.6.0/libv4lconvert/libv4lconvert.c 2010-02-20 23:01:12.000000000 +0000
@@ -1088,8 +1088,10 @@
v4lprocessing_processing(data->processing, convert2_dest, &my_src_fmt);
}
- if (rotate90)
+ if (rotate90) {
v4lconvert_rotate90(rotate90_src, rotate90_dest, &my_src_fmt);
+ v4lconvert_fixup_fmt(&my_src_fmt);
+ }
if (hflip || vflip)
v4lconvert_flip(flip_src, flip_dest, &my_src_fmt, hflip, vflip);
I didn't look closely at the latest source, so it is possible this already fixed some other way.
Richard
next reply other threads:[~2010-02-20 23:51 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2010-02-20 23:51 Richard Hirst [this message]
2010-02-21 19:45 ` [PATCH] v4lconvert_rotate90() leaves bytesperline wrong Hans de Goede
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=4B80757B.5070804@sleepie.demon.co.uk \
--to=richard@sleepie.demon.co.uk \
--cc=linux-media@vger.kernel.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox