comparison mpeg.h @ 2620:792383dd085e libavformat

Add FFMPEG_ prefix to all multiple inclusion guards.
author diego
date Wed, 17 Oct 2007 09:37:46 +0000
parents 50322a49fa2b
children e5dfe3c96f3b
comparison
equal deleted inserted replaced
2619:ed220a21ffa5 2620:792383dd085e
17 * You should have received a copy of the GNU Lesser General Public 17 * You should have received a copy of the GNU Lesser General Public
18 * License along with FFmpeg; if not, write to the Free Software 18 * License along with FFmpeg; if not, write to the Free Software
19 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA 19 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
20 */ 20 */
21 21
22 #ifndef AVFORMAT_MPEG_H 22 #ifndef FFMPEG_MPEG_H
23 #define AVFORMAT_MPEG_H 23 #define FFMPEG_MPEG_H
24 24
25 #define PACK_START_CODE ((unsigned int)0x000001ba) 25 #define PACK_START_CODE ((unsigned int)0x000001ba)
26 #define SYSTEM_HEADER_START_CODE ((unsigned int)0x000001bb) 26 #define SYSTEM_HEADER_START_CODE ((unsigned int)0x000001bb)
27 #define SEQUENCE_END_CODE ((unsigned int)0x000001b7) 27 #define SEQUENCE_END_CODE ((unsigned int)0x000001b7)
28 #define PACKET_START_CODE_MASK ((unsigned int)0xffffff00) 28 #define PACKET_START_CODE_MASK ((unsigned int)0xffffff00)
55 #define STREAM_TYPE_AUDIO_AC3 0x81 55 #define STREAM_TYPE_AUDIO_AC3 0x81
56 #define STREAM_TYPE_AUDIO_DTS 0x8a 56 #define STREAM_TYPE_AUDIO_DTS 0x8a
57 57
58 static const int lpcm_freq_tab[4] = { 48000, 96000, 44100, 32000 }; 58 static const int lpcm_freq_tab[4] = { 48000, 96000, 44100, 32000 };
59 59
60 #endif /* AVFORMAT_MPEG_H */ 60 #endif /* FFMPEG_MPEG_H */