Libav
|
00001 /* 00002 * AIFF/AIFF-C muxer/demuxer common header 00003 * Copyright (c) 2006 Patrick Guimond 00004 * 00005 * This file is part of FFmpeg. 00006 * 00007 * FFmpeg is free software; you can redistribute it and/or 00008 * modify it under the terms of the GNU Lesser General Public 00009 * License as published by the Free Software Foundation; either 00010 * version 2.1 of the License, or (at your option) any later version. 00011 * 00012 * FFmpeg is distributed in the hope that it will be useful, 00013 * but WITHOUT ANY WARRANTY; without even the implied warranty of 00014 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 00015 * Lesser General Public License for more details. 00016 * 00017 * You should have received a copy of the GNU Lesser General Public 00018 * License along with FFmpeg; if not, write to the Free Software 00019 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA 00020 */ 00021 00027 #ifndef AVFORMAT_AIFF_H 00028 #define AVFORMAT_AIFF_H 00029 00030 #include "avformat.h" 00031 #include "riff.h" 00032 00033 static const AVCodecTag ff_codec_aiff_tags[] = { 00034 { CODEC_ID_PCM_S16BE, MKTAG('N','O','N','E') }, 00035 { CODEC_ID_PCM_S8, MKTAG('N','O','N','E') }, 00036 { CODEC_ID_PCM_S24BE, MKTAG('N','O','N','E') }, 00037 { CODEC_ID_PCM_S32BE, MKTAG('N','O','N','E') }, 00038 { CODEC_ID_PCM_F32BE, MKTAG('f','l','3','2') }, 00039 { CODEC_ID_PCM_F64BE, MKTAG('f','l','6','4') }, 00040 { CODEC_ID_PCM_ALAW, MKTAG('a','l','a','w') }, 00041 { CODEC_ID_PCM_MULAW, MKTAG('u','l','a','w') }, 00042 { CODEC_ID_MACE3, MKTAG('M','A','C','3') }, 00043 { CODEC_ID_MACE6, MKTAG('M','A','C','6') }, 00044 { CODEC_ID_GSM, MKTAG('G','S','M',' ') }, 00045 { CODEC_ID_ADPCM_G726, MKTAG('G','7','2','6') }, 00046 { CODEC_ID_PCM_S16LE, MKTAG('s','o','w','t') }, 00047 { CODEC_ID_ADPCM_IMA_QT, MKTAG('i','m','a','4') }, 00048 { CODEC_ID_QDM2, MKTAG('Q','D','M','2') }, 00049 { CODEC_ID_QCELP, MKTAG('Q','c','l','p') }, 00050 { CODEC_ID_NONE, 0 }, 00051 }; 00052 00053 #endif /* AVFORMAT_AIFF_H */