diff options
author | Paul Arthur <paul.arthur@flowerysong.com> | 2013-09-20 11:57:47 -0400 |
---|---|---|
committer | Paul Arthur <paul.arthur@flowerysong.com> | 2013-09-20 11:57:47 -0400 |
commit | a589211bb6291897e73877747ee154570e819b9f (patch) | |
tree | bdfb43b58a0236f3ced3df9c92be68d542ad27b0 /lib | |
parent | 6f05b3d4364bc0af5e6777e821c46f46773313df (diff) | |
download | ampache-a589211bb6291897e73877747ee154570e819b9f.tar.gz ampache-a589211bb6291897e73877747ee154570e819b9f.tar.bz2 ampache-a589211bb6291897e73877747ee154570e819b9f.zip |
GH #49 - Add support for aacp transcoding
Seems harmless enough.
Diffstat (limited to 'lib')
-rw-r--r-- | lib/class/song.class.php | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/lib/class/song.class.php b/lib/class/song.class.php index 3e2baf83..1008ae1b 100644 --- a/lib/class/song.class.php +++ b/lib/class/song.class.php @@ -310,6 +310,9 @@ class Song extends database_object implements media { case 'm4a': return 'audio/mp4'; break; + case 'aacp': + return 'audio/aacp'; + break; case 'mpc': return 'audio/x-musepack'; break; |