summaryrefslogtreecommitdiffstats
path: root/libavcodec/mpegvideo.h
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2007-08-01 22:12:52 +0000
committerMichael Niedermayer <michaelni@gmx.at>2007-08-01 22:12:52 +0000
commit653f738780035025ee4360757c5ad071ee82bedb (patch)
treec6d62e31bd8cbf8b3e5211ee391fd9a0b5ed7267 /libavcodec/mpegvideo.h
parent04b502fa368e40835d8e2b3a15245d53541fa742 (diff)
downloadffmpeg-streaming-653f738780035025ee4360757c5ad071ee82bedb.zip
ffmpeg-streaming-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.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/mpegvideo.h b/libavcodec/mpegvideo.h
index fde3aae..86cd39e 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
OpenPOWER on IntegriCloud