]> git.sesse.net Git - ffmpeg/blobdiff - libavcodec/motion_est.h
decode: flush the internal bsfs instead of constantly reinitalizing them
[ffmpeg] / libavcodec / motion_est.h
index cbfbbe8176d090df6d743322e46b38c1740665be..3b63972d6e830c72d06a0ab75972c2c93c2af19b 100644 (file)
 struct MpegEncContext;
 
 #define MAX_MV 2048
+#define ME_MAP_SIZE 64
+
+#define FF_ME_ZERO 0
+#define FF_ME_EPZS 1
+#define FF_ME_XONE 2
 
 /**
  * Motion estimation context.
@@ -122,7 +127,4 @@ void ff_fix_long_mvs(struct MpegEncContext *s, uint8_t *field_select_table,
                      int field_select, int16_t (*mv_table)[2], int f_code,
                      int type, int truncate);
 
-extern const uint8_t ff_aic_dc_scale_table[32];
-extern const uint8_t ff_h263_chroma_qscale_table[32];
-
 #endif /* AVCODEC_MOTIONEST_H */