diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2007-08-01 22:12:52 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2007-08-01 22:12:52 +0000 |
commit | 653f738780035025ee4360757c5ad071ee82bedb (patch) | |
tree | c6d62e31bd8cbf8b3e5211ee391fd9a0b5ed7267 /libavcodec/mpegvideo.h | |
parent | 04b502fa368e40835d8e2b3a15245d53541fa742 (diff) | |
download | ffmpeg-653f738780035025ee4360757c5ad071ee82bedb.tar.gz |
exchange the values of MV_DIR_FORWARD and MV_DIR_BACKWARD (this is more sane,
matches the order of some other stuff and allows some simplifications)
Originally committed as revision 9864 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/mpegvideo.h')
-rw-r--r-- | libavcodec/mpegvideo.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/mpegvideo.h b/libavcodec/mpegvideo.h index fde3aaeacd..86cd39e638 100644 --- a/libavcodec/mpegvideo.h +++ b/libavcodec/mpegvideo.h @@ -368,8 +368,8 @@ typedef struct MpegEncContext { uint8_t (*b_field_select_table[2][2]); int me_method; ///< ME algorithm int mv_dir; -#define MV_DIR_BACKWARD 1 -#define MV_DIR_FORWARD 2 +#define MV_DIR_FORWARD 1 +#define MV_DIR_BACKWARD 2 #define MV_DIRECT 4 ///< bidirectional mode where the difference equals the MV of the last P/S/I-Frame (mpeg4) int mv_type; #define MV_TYPE_16X16 0 ///< 1 vector for the whole mb |