comparison h264data.h @ 5638:4a26dc4ca11d libavcodec

Move H.264 intra prediction functions into their own context
author kostya
date Wed, 05 Sep 2007 05:30:08 +0000
parents 05d19547df39
children 1d83e9c34641
comparison
equal deleted inserted replaced
5637:473cada682a1 5638:4a26dc4ca11d
31 31
32 #include <stdint.h> 32 #include <stdint.h>
33 #include "mpegvideo.h" 33 #include "mpegvideo.h"
34 #include "rational.h" 34 #include "rational.h"
35 35
36 #define VERT_PRED 0
37 #define HOR_PRED 1
38 #define DC_PRED 2
39 #define DIAG_DOWN_LEFT_PRED 3
40 #define DIAG_DOWN_RIGHT_PRED 4
41 #define VERT_RIGHT_PRED 5
42 #define HOR_DOWN_PRED 6
43 #define VERT_LEFT_PRED 7
44 #define HOR_UP_PRED 8
45
46 #define LEFT_DC_PRED 9
47 #define TOP_DC_PRED 10
48 #define DC_128_PRED 11
49
50
51 #define DC_PRED8x8 0
52 #define HOR_PRED8x8 1
53 #define VERT_PRED8x8 2
54 #define PLANE_PRED8x8 3
55
56 #define LEFT_DC_PRED8x8 4
57 #define TOP_DC_PRED8x8 5
58 #define DC_128_PRED8x8 6
59 36
60 #define EXTENDED_SAR 255 37 #define EXTENDED_SAR 255
61 38
62 /* NAL unit types */ 39 /* NAL unit types */
63 enum { 40 enum {