Apple's iTunes 4 now rips in AAC format by default, and
uses the .m4a extension for AAC files. Right now, it's
necessary to rename the files to .aac for the plugin to
play them. Adding support for .m4a in the is_our_file
function of libaac.c would be good.
Logged In: YES
user_id=16762
Changing line 206 of libaac.c from:
if ( strncasecmp(ext, ".aac", 4) == 0 ) {
To:
if ( strncasecmp(ext, ".aac", 4) == 0 ||
strncasecmp(ext, ".m4a", 4) ) {
Should work.