File indexing completed on 2024-05-19 04:49:32

0001 /****************************************************************************************
0002  * Copyright (c) 2010 Téo Mrnjavac <teo@kde.org>                                        *
0003  *                                                                                      *
0004  * This program is free software; you can redistribute it and/or modify it under        *
0005  * the terms of the GNU General Public License as published by the Free Software        *
0006  * Foundation; either version 2 of the License, or (at your option) any later           *
0007  * version.                                                                             *
0008  *                                                                                      *
0009  * This program is distributed in the hope that it will be useful, but WITHOUT ANY      *
0010  * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A      *
0011  * PARTICULAR PURPOSE. See the GNU General Public License for more details.             *
0012  *                                                                                      *
0013  * You should have received a copy of the GNU General Public License along with         *
0014  * this program.  If not, see <http://www.gnu.org/licenses/>.                           *
0015  ****************************************************************************************/
0016 
0017 #ifndef TRANSCODING_DEFINES_H
0018 #define TRANSCODING_DEFINES_H
0019 
0020 namespace Transcoding
0021 {
0022     enum Encoder
0023     {
0024         INVALID,   // denotes invalid transcoding configuration
0025         JUST_COPY, // just copy or move the tracks (no transcoding)
0026         AAC,       // Advanced Audio Coding
0027         ALAC,      // Apple Lossless Audio Codec
0028         FLAC,      // Free Lossless Audio Codec
0029         MP3,       // MPEG-1 or MPEG-2 Audio Layer III encoded using lame encoder
0030         OPUS,      // Opus
0031         VORBIS,    // Ogg Vorbis
0032         WMA2       // Windows Media Audio 2
0033     };
0034 
0035 }
0036 
0037 #endif //TRANSCODING_DEFINES_H