00001 /* 00002 * This file is part of libbluray 00003 * Copyright (C) 2010 hpi1 00004 * 00005 * This library is free software; you can redistribute it and/or 00006 * modify it under the terms of the GNU Lesser General Public 00007 * License as published by the Free Software Foundation; either 00008 * version 2.1 of the License, or (at your option) any later version. 00009 * 00010 * This library is distributed in the hope that it will be useful, 00011 * but WITHOUT ANY WARRANTY; without even the implied warranty of 00012 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 00013 * Lesser General Public License for more details. 00014 * 00015 * You should have received a copy of the GNU Lesser General Public 00016 * License along with this library. If not, see 00017 * <http://www.gnu.org/licenses/>. 00018 */ 00019 00020 #if !defined(_IG_DECODE_H_) 00021 #define _IG_DECODE_H_ 00022 00023 #include "ig.h" 00024 00025 #include <util/attributes.h> 00026 #include <util/bits.h> 00027 00028 #include <stdint.h> 00029 00030 #ifdef __cplusplus 00031 extern "C" { 00032 #endif 00033 00034 /* 00035 * segment 00036 */ 00037 00038 BD_PRIVATE int ig_decode_interactive(BITBUFFER *bb, BD_IG_INTERACTIVE *p); 00039 00040 BD_PRIVATE void ig_clean_interactive(BD_IG_INTERACTIVE *p); 00041 BD_PRIVATE void ig_free_interactive(BD_IG_INTERACTIVE **p); 00042 00043 #ifdef __cplusplus 00044 }; 00045 #endif 00046 00047 #endif // _IG_DECODE_H_
1.6.3