From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-ee0-f49.google.com (mail-ee0-f49.google.com [74.125.83.49]) by yocto-www.yoctoproject.org (Postfix) with ESMTP id 154F7E0077E for ; Thu, 5 Dec 2013 09:48:59 -0800 (PST) Received: by mail-ee0-f49.google.com with SMTP id c41so3300877eek.22 for ; Thu, 05 Dec 2013 09:48:58 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=message-id:date:from:user-agent:mime-version:to:subject :content-type; bh=9Y9/pO0WgxgcXojrAw1+/M2QS44/M35+me7ux0+y/1g=; b=kEWgNEfIxBWXMsYv/qWICgo0WPkrYEW2F2enwcZirg8GOreFdNJMq+/t4AGbDzbUJ+ ay3Ps/dZKsZzpafg1GYiROYdiZnnzEeJ1SkJltCKMMOGv9xL1Tc/d0tN2iyIH9fzPams WWzFtwXe4hAYJaT3RyVdkpF9wDkV5036VarghgjzOxzODVDd7fOxz7F+jQ2xMtgkF3VR dJPSU/aUDcvoH5DJy+d9kVQB85HYilSWQADNGTB6J6AtxKGSLqssRZTKosH4h9EiZC3y /0FTu8wOnj1HVe6E6eJG/S8GPVURAnR9HTKlVoI2M5dLn6C8px7wzOajquCr5oLOOUZb /Weg== X-Received: by 10.15.111.201 with SMTP id cj49mr17453758eeb.56.1386265738394; Thu, 05 Dec 2013 09:48:58 -0800 (PST) Received: from [172.24.63.13] ([94.103.137.126]) by mx.google.com with ESMTPSA id n1sm108739692eep.20.2013.12.05.09.48.56 for (version=TLSv1 cipher=ECDHE-RSA-RC4-SHA bits=128/128); Thu, 05 Dec 2013 09:48:57 -0800 (PST) Message-ID: <52A0BC85.3050303@gmail.com> Date: Thu, 05 Dec 2013 18:48:53 +0100 From: =?ISO-8859-1?Q?st=E9phane_cerveau?= User-Agent: Mozilla/5.0 (X11; Linux i686; rv:24.0) Gecko/20100101 Thunderbird/24.1.1 MIME-Version: 1.0 To: meta-freescale@yoctoproject.org Subject: aacdec support in gst-fsl-plugin on imx6 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: Thu, 05 Dec 2013 17:49:00 -0000 X-Groupsio-MsgNum: 5879 Content-Type: multipart/mixed; boundary="------------040905050101030703000909" --------------040905050101030703000909 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 8bit Dear all, I was suprised to see that aac decoding was not supported in gst-fsl-plugin_3.0.9. After some investigation i discovered that makefile.am was not having the AAC option for imx6. Please see patch attachment. I add a try and now m4a file are correctly supported in gstreamer. Is there a reason to disable aac dec on imx6 or is it only a mistake ? Best regards. Stéphane --------------040905050101030703000909 Content-Type: text/x-patch; name="makefile.am-fix-aac-for-imx6.patch" Content-Transfer-Encoding: 7bit Content-Disposition: attachment; filename="makefile.am-fix-aac-for-imx6.patch" --- a/Makefile.am 2013-09-10 20:52:22.000000000 +0200 +++ b/Makefile.am 2013-12-05 18:26:24.964585163 +0100 @@ -928,7 +928,7 @@ tools/gplay SUBDIRS = $(AUDIODIRS) $(LIBSDIRS) $(BASEDIRS) $(VPUWRAPDIRS) $(WMA8ENC_DIR) $(MP3ENC_DIR) \ - $(H264DEC_DIR) $(MPEG2DEC_DIR) $(MPEG4DEC_DIR) $(WMV9MPDEC_DIR) $(WMV78DEC_DIR) \ + $(H264DEC_DIR) $(MPEG2DEC_DIR) $(MPEG4DEC_DIR) $(WMV9MPDEC_DIR) $(WMV78DEC_DIR) $(AACDEC_DIR)\ $(DOWNMIX_DIR) $(AMRDEC_DIR) $(IPUDIRS) $(TOOLDIRS) endif --------------040905050101030703000909--