summaryrefslogtreecommitdiff
path: root/ffmpeg.c
diff options
context:
space:
mode:
authorJuanjo <pulento@users.sourceforge.net>2002-04-14 22:17:40 +0000
committerJuanjo <pulento@users.sourceforge.net>2002-04-14 22:17:40 +0000
commit101bea5f2272dfcca084aeeb78ccb1c2e925b12b (patch)
tree10a73258ed2e1105ff7b75fc8b356cd4eeb5907a /ffmpeg.c
parente4986da9ce91c4a6f9e942c4225f0c3d90e5db95 (diff)
- ME method compatibility with legacy apps.
- Please use AVCodecContext's me_method now. Originally committed as revision 399 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'ffmpeg.c')
-rw-r--r--ffmpeg.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/ffmpeg.c b/ffmpeg.c
index 1ae1fa30f1..52a147b4d7 100644
--- a/ffmpeg.c
+++ b/ffmpeg.c
@@ -82,7 +82,7 @@ static int video_qmax = 15;
static int video_qdiff = 3;
static float video_qblur = 0.5;
static float video_qcomp = 0.5;
-static int motion_estimation_method = 0;
+static int me_method = 0;
static int video_disable = 0;
static int video_codec_id = CODEC_ID_NONE;
static int same_quality = 0;
@@ -1388,7 +1388,7 @@ void opt_motion_estimation(const char *arg)
break;
p++;
}
- motion_estimation_method = (p - motion_str) - 4;
+ me_method = (p - motion_str) + 1;
}
void opt_video_codec(const char *arg)
@@ -1784,7 +1784,7 @@ void opt_output_file(const char *filename)
else
video_enc->get_psnr = 0;
- video_enc->me_method = motion_estimation_method;
+ video_enc->me_method = me_method;
/* XXX: need to find a way to set codec parameters */
if (oc->format == &ppm_format ||
@@ -2038,11 +2038,11 @@ void show_formats(void)
pp = motion_str;
while (*pp) {
printf(" %s", *pp);
- if ((pp - motion_str - 4) == ME_ZERO)
+ if ((pp - motion_str + 1) == ME_ZERO)
printf("(fastest)");
- else if ((pp - motion_str - 4) == ME_FULL)
+ else if ((pp - motion_str + 1) == ME_FULL)
printf("(slowest)");
- else if ((pp - motion_str - 4) == ME_EPZS)
+ else if ((pp - motion_str + 1) == ME_EPZS)
printf("(default)");
pp++;
}