After an evaluation, GNOME has moved from Bugzilla to GitLab. Learn more about GitLab.
No new issues can be reported in GNOME Bugzilla anymore.
To report an issue in a GNOME project, go to GNOME GitLab.
Do not go to GNOME Gitlab for: Bluefish, Doxygen, GnuCash, GStreamer, java-gnome, LDTP, NetworkManager, Tomboy.
Bug 527125 - OMX AAC decoder should accept MPEG versions 2 and 4
OMX AAC decoder should accept MPEG versions 2 and 4
Status: RESOLVED FIXED
Product: GStreamer
Classification: Platform
Component: gst-omx
git master
Other Linux
: Normal normal
: 0.10.1
Assigned To: Felipe Contreras (banned)
GStreamer Maintainers
Depends on:
Blocks:
 
 
Reported: 2008-04-09 12:23 UTC by Tommi Myöhänen
Modified: 2008-05-21 22:53 UTC
See Also:
GNOME target: ---
GNOME version: ---



Description Tommi Myöhänen 2008-04-09 12:23:31 UTC
Currently AAC decoder sink caps are defined as follows:

    caps = gst_caps_new_simple ("audio/mpeg",
                                "mpegversion", G_TYPE_INT, 4,
                                "rate", GST_TYPE_INT_RANGE, 8000, 48000,
                                "channels", GST_TYPE_INT_RANGE, 1, 8,
                                NULL);

It does not accept mpegversion == 2, even AAC format can be either MPEG version 2 or 4.

Also, it might be good idea to define the templates as static GstStaticPadTemplate objects by using GST_STATIC_PAD_TEMPLATE macro instead of using generate_{src,sink}_template() functions.
Comment 1 Felipe Contreras (banned) 2008-05-19 20:31:02 UTC
Fixed in CVS.