comparison truemotion1data.h @ 1665:2886ec9d113f libavcodec

cosmetics
author alex
date Mon, 08 Dec 2003 11:35:09 +0000
parents bdade3baabfc
children ba8ecddf5598
comparison
equal deleted inserted replaced
1664:1c7ded3c2b25 1665:2886ec9d113f
4 * Data in this file was originally part of VpVision from On2 which is 4 * Data in this file was originally part of VpVision from On2 which is
5 * distributed under the GNU GPL. It is redistributed with ffmpeg under the 5 * distributed under the GNU GPL. It is redistributed with ffmpeg under the
6 * GNU LGPL using the common understanding that data tables necessary for 6 * GNU LGPL using the common understanding that data tables necessary for
7 * decoding algorithms are not necessarily licensable. 7 * decoding algorithms are not necessarily licensable.
8 */ 8 */
9 #ifndef TRUEMOTION1DATA_H
10 #define TRUEMOTION1DATA_H
9 11
10 /* Y delta tables, skinny and fat */ 12 /* Y delta tables, skinny and fat */
11 static int16_t ydt1[8] = { 0, -2, 2, -6, 6, -12, 12, -12 }; 13 static int16_t ydt1[8] = { 0, -2, 2, -6, 6, -12, 12, -12 };
12 static int16_t ydt2[8] = { 0, -2, 2, -6, 6, -12, 12, -12 }; 14 static int16_t ydt2[8] = { 0, -2, 2, -6, 6, -12, 12, -12 };
13 static int16_t ydt3[8] = { 4, -6, 20, -20, 46, -46, 94, -94 }; 15 static int16_t ydt3[8] = { 4, -6, 20, -20, 46, -46, 94, -94 };
805 0x2,0x57, 807 0x2,0x57,
806 0x2,0x67, 808 0x2,0x67,
807 0x2,0x77 809 0x2,0x77
808 }; 810 };
809 811
810 uint8_t *tables[] = { pc_tbl2, pc_tbl3, pc_tbl4 }; 812 static uint8_t *tables[] = { pc_tbl2, pc_tbl3, pc_tbl4 };
813 #endif