From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-gh0-f176.google.com (mail-gh0-f176.google.com [209.85.160.176]) by yocto-www.yoctoproject.org (Postfix) with ESMTP id BB593E00777 for ; Mon, 10 Dec 2012 09:07:36 -0800 (PST) Received: by mail-gh0-f176.google.com with SMTP id g10so547911ghb.35 for ; Mon, 10 Dec 2012 09:07:36 -0800 (PST) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=20120113; h=message-id:date:from:user-agent:mime-version:to:subject :content-type:content-transfer-encoding:x-gm-message-state; bh=j1tLnPdwfwQ4j15vy5UC3cBEkNutmgUHr9dbar+H830=; b=NXWdLGqyxii8pDod/2yYdnWMzqYmT/QNYnfq0x/QsPL+8x8MF13rDHfGYGfGq+iGFC ERBqomToNnMGMmjhb9CeHdcI4bq8O5jppMm6NKmLVSY9ioUNj6QCDgeflBk5djRdQUOR NcVDqW0IheaS3+RsA92sVWmiWL0Vkd0LoJGjLFx5lsmJCS9UQi4uJtE5/TJcFuqcsIEK VmSzPaveg9BECPmXxHKBcBgTt7HQDkKleD8Sa4EA1C6/hBoXelgPvOqxXO9qQoDCa7hM ieBBmmzeJhDqSZuOmaH0fx9ICAFycgjWS4vgbnzOZSq19kRpmJx+zHEFo9pHTCM3Rf48 MiNQ== Received: by 10.236.128.141 with SMTP id f13mr22769671yhi.52.1355159256132; Mon, 10 Dec 2012 09:07:36 -0800 (PST) Received: from [192.168.0.55] ([70.96.116.236]) by mx.google.com with ESMTPS id g2sm26956998yhj.9.2012.12.10.09.07.32 (version=SSLv3 cipher=OTHER); Mon, 10 Dec 2012 09:07:34 -0800 (PST) Message-ID: <50C616D1.1020409@boundarydevices.com> Date: Mon, 10 Dec 2012 10:07:29 -0700 From: Eric Nelson User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:17.0) Gecko/17.0 Thunderbird/17.0 MIME-Version: 1.0 To: meta-freescale@yoctoproject.org X-Gm-Message-State: ALoCoQns82/gqVlsYYTC8gB94BbAzNkhOmLh9Cb5hk+93KKlHh+JLE5jGYySF3ZuhHOjD+cSXPz3 Subject: Qt/Phonon integration on i.MX6 X-BeenThere: meta-freescale@yoctoproject.org X-Mailman-Version: 2.1.13 Precedence: list List-Id: Usage and development list for the meta-fsl-* layers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 10 Dec 2012 17:07:36 -0000 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Hi all, Thanks Rogerio for integrating gstreamer and Phonon! It's really nice to see this function. I've seen your patches on i.MX Community but hadn't had the time to pull them into any userspace. I did find an issue with qmediaplayer on i.MX6 though. It appears that a reference to /dev/video17 leaks during each video playback. Before playing any videos, no handles are open: ~# ls -l /proc/`pidof qmediaplayer`/fd | grep /dev/video ~# During the first video, two handles are open: ~# ls -l /proc/`pidof qmediaplayer`/fd | grep /dev/video lrwx------ 1 root root 64 Dec 9 23:49 16 -> /dev/video17 lrwx------ 1 root root 64 Dec 9 23:49 17 -> /dev/video17 If I let the first complete, then open another video, I see three handles: ~# ls -l /proc/`pidof qmediaplayer`/fd | grep /dev/video lrwx------ 1 root root 64 Dec 9 23:49 16 -> /dev/video17 lrwx------ 1 root root 64 Dec 9 23:49 17 -> /dev/video17 lrwx------ 1 root root 64 Dec 9 23:52 18 -> /dev/video17 and so on. I caught this after repeatedly playing the very short akiyo.mp4 from /unit_tests. After a few successful runs, video playback stopped. Regards, Eric