comparison truemotion1data.h @ 5162:4394344397d8 libavcodec

include all prerequisites in header files
author mru
date Sat, 16 Jun 2007 22:59:13 +0000
parents c8c591fe26f8
children 1d83e9c34641
comparison
equal deleted inserted replaced
5161:94c3f01c243c 5162:4394344397d8
22 * License along with FFmpeg; if not, write to the Free Software 22 * License along with FFmpeg; if not, write to the Free Software
23 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA 23 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
24 */ 24 */
25 #ifndef TRUEMOTION1DATA_H 25 #ifndef TRUEMOTION1DATA_H
26 #define TRUEMOTION1DATA_H 26 #define TRUEMOTION1DATA_H
27
28 #include <stdint.h>
29 #include <stdlib.h>
27 30
28 /* Y delta tables, skinny and fat */ 31 /* Y delta tables, skinny and fat */
29 static const int16_t ydt1[8] = { 0, -2, 2, -6, 6, -12, 12, -12 }; 32 static const int16_t ydt1[8] = { 0, -2, 2, -6, 6, -12, 12, -12 };
30 static const int16_t ydt2[8] = { 0, -2, 4, -6, 8, -12, 12, -12 }; 33 static const int16_t ydt2[8] = { 0, -2, 4, -6, 8, -12, 12, -12 };
31 static const int16_t ydt3[8] = { 4, -6, 20, -20, 46, -46, 94, -94 }; 34 static const int16_t ydt3[8] = { 4, -6, 20, -20, 46, -46, 94, -94 };