diff --git a/atsc/atsc.h b/atsc/atsc.h new file mode 100644 index 0000000..00a34c8 --- /dev/null +++ b/atsc/atsc.h @@ -0,0 +1,28 @@ +/***************************************************************************** + * atsc.h : ATSC specific headers + ***************************************************************************** + * Copyright (C) 2010 Kieran Kunhya + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 2 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02111, USA. + *****************************************************************************/ + +#ifndef LIBMPEGTS_ATSC +#define LIBMPEGTS_ATSC + +/* ATSC stream_types */ +#define AUDIO_AC3 0x81 +#define AUDIO_EAC3 0x84 + +#endif diff --git a/bitstream.h b/bitstream.h index f65a98f..f415edb 100755 --- a/bitstream.h +++ b/bitstream.h @@ -28,12 +28,6 @@ #ifndef LIBMPEGTS_BS_H #define LIBMPEGTS_BS_H -#if HAVE_STDINT_H -#include -#else -#include -#endif - #define WORD_SIZE sizeof(long) /* Unions for type-punning.