]> git.sesse.net Git - ffmpeg/blobdiff - libavcodec/roqvideo.h
lcl: Disentangle pointers to input data and decompression buffer
[ffmpeg] / libavcodec / roqvideo.h
index fba3d41a4afc795900fe1c4f7480d64a1e244382..3f000225e9d09ecbad1b228fbf8f3eebafe6fda7 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;
 
@@ -45,8 +44,6 @@ struct RoqTempData;
 typedef struct RoqContext {
 
     AVCodecContext *avctx;
-    DSPContext dsp;
-    AVFrame frames[2];
     AVFrame *last_frame;
     AVFrame *current_frame;
     int first_frame;