comparison cavsdata.h @ 5163:9ecbfc0c82bf libavcodec

add multiple inclusion guards to headers
author mru
date Sun, 17 Jun 2007 00:01:30 +0000
parents 5d4544d7cbbc
children 3fd46e281bd8
comparison
equal deleted inserted replaced
5162:4394344397d8 5163:9ecbfc0c82bf
16 * 16 *
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 St, Fifth Floor, Boston, MA 02110-1301 USA 19 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
20 */ 20 */
21
22 #ifndef AVCODEC_CAVSDATA_H
23 #define AVCODEC_CAVSDATA_H
21 24
22 #include "cavs.h" 25 #include "cavs.h"
23 26
24 static const uint8_t partition_flags[30] = { 27 static const uint8_t partition_flags[30] = {
25 0, //I_8X8 28 0, //I_8X8
512 515
513 static const int_fast8_t left_modifier_l[8] = { 0,-1, 6,-1,-1, 7, 6, 7}; 516 static const int_fast8_t left_modifier_l[8] = { 0,-1, 6,-1,-1, 7, 6, 7};
514 static const int_fast8_t top_modifier_l[8] = {-1, 1, 5,-1,-1, 5, 7, 7}; 517 static const int_fast8_t top_modifier_l[8] = {-1, 1, 5,-1,-1, 5, 7, 7};
515 static const int_fast8_t left_modifier_c[7] = { 5,-1, 2,-1, 6, 5, 6}; 518 static const int_fast8_t left_modifier_c[7] = { 5,-1, 2,-1, 6, 5, 6};
516 static const int_fast8_t top_modifier_c[7] = { 4, 1,-1,-1, 4, 6, 6}; 519 static const int_fast8_t top_modifier_c[7] = { 4, 1,-1,-1, 4, 6, 6};
520
521 #endif