]> git.sesse.net Git - ffmpeg/blobdiff - libavcodec/roqvideo.h
qtrle: fix the topmost line for 1bit
[ffmpeg] / libavcodec / roqvideo.h
index fba3d41a4afc795900fe1c4f7480d64a1e244382..33d77edc8b118c463baa0849e604ce880376f04f 100644 (file)
 #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;
 
@@ -45,7 +45,6 @@ struct RoqTempData;
 typedef struct RoqContext {
 
     AVCodecContext *avctx;
-    DSPContext dsp;
     AVFrame frames[2];
     AVFrame *last_frame;
     AVFrame *current_frame;