OLD | NEW |
1 /* | 1 /* |
2 * Copyright (c) 2002 The FFmpeg Project | 2 * Copyright (c) 2002 The FFmpeg Project |
3 * | 3 * |
4 * This file is part of FFmpeg. | 4 * This file is part of FFmpeg. |
5 * | 5 * |
6 * FFmpeg is free software; you can redistribute it and/or | 6 * FFmpeg is free software; you can redistribute it and/or |
7 * modify it under the terms of the GNU Lesser General Public | 7 * modify it under the terms of the GNU Lesser General Public |
8 * License as published by the Free Software Foundation; either | 8 * License as published by the Free Software Foundation; either |
9 * version 2.1 of the License, or (at your option) any later version. | 9 * version 2.1 of the License, or (at your option) any later version. |
10 * | 10 * |
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
43 int per_mb_abt; | 43 int per_mb_abt; |
44 int per_block_abt; | 44 int per_block_abt; |
45 int mspel_bit; | 45 int mspel_bit; |
46 int cbp_table_index; | 46 int cbp_table_index; |
47 int top_left_mv_flag; | 47 int top_left_mv_flag; |
48 int per_mb_rl_bit; | 48 int per_mb_rl_bit; |
49 int skip_type; | 49 int skip_type; |
50 int hshift; | 50 int hshift; |
51 | 51 |
52 ScanTable abt_scantable[2]; | 52 ScanTable abt_scantable[2]; |
53 DECLARE_ALIGNED_16(DCTELEM, abt_block2)[6][64]; | 53 DECLARE_ALIGNED(16, DCTELEM, abt_block2)[6][64]; |
54 }Wmv2Context; | 54 }Wmv2Context; |
55 | 55 |
56 void ff_wmv2_common_init(Wmv2Context * w); | 56 void ff_wmv2_common_init(Wmv2Context * w); |
57 | 57 |
58 #endif /* AVCODEC_WMV2_H */ | 58 #endif /* AVCODEC_WMV2_H */ |
OLD | NEW |