]> git.sesse.net Git - ffmpeg/blobdiff - libavcodec/roqvideo.h
h264: add a parameter to the CABAC macro.
[ffmpeg] / libavcodec / roqvideo.h
index 4018e357a94055d907b0478c907b9190e660d2c8..eed2f226feb814f4cc27b585c6a047ebea7f60b3 100644 (file)
 #include "libavutil/lfg.h"
 #include "avcodec.h"
 #include "bytestream.h"
-#include "dsputil.h"
 
-typedef struct {
+typedef struct roq_cell {
     unsigned char y[4];
     unsigned char u, v;
 } roq_cell;
 
-typedef struct {
+typedef struct roq_qcell {
     int idx[4];
 } roq_qcell;
 
-typedef struct {
+typedef struct motion_vect {
     int d[2];
 } motion_vect;