Add ATSC header. Fix #include in bitstream.h

sdt
Kieran Kunhya 2010-11-13 15:10:41 +00:00
rodzic a79afacf70
commit 0e984d8e66
2 zmienionych plików z 28 dodań i 6 usunięć

28
atsc/atsc.h 100644
Wyświetl plik

@ -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

Wyświetl plik

@ -28,12 +28,6 @@
#ifndef LIBMPEGTS_BS_H
#define LIBMPEGTS_BS_H
#if HAVE_STDINT_H
#include <stdint.h>
#else
#include <inttypes.h>
#endif
#define WORD_SIZE sizeof(long)
/* Unions for type-punning.