diff libmpcodecs/vd_ffmpeg.c @ 26166:da6f8ef92918

Grayscale encoding/decoding with FFmpeg is no longer enabled, remove references from the documentation and the relevant options from the glue code.
author diego
date Fri, 07 Mar 2008 21:30:01 +0000
parents 1318e956c092
children 71bd93e71a97
line wrap: on
line diff
--- a/libmpcodecs/vd_ffmpeg.c	Fri Mar 07 21:25:28 2008 +0000
+++ b/libmpcodecs/vd_ffmpeg.c	Fri Mar 07 21:30:01 2008 +0000
@@ -71,7 +71,6 @@
 static int lavc_param_workaround_bugs= FF_BUG_AUTODETECT;
 static int lavc_param_error_resilience=2;
 static int lavc_param_error_concealment=3;
-static int lavc_param_gray=0;
 static int lavc_param_vstats=0;
 static int lavc_param_idct_algo=0;
 static int lavc_param_debug=0;
@@ -90,7 +89,6 @@
 const m_option_t lavc_decode_opts_conf[]={
 	{"bug", &lavc_param_workaround_bugs, CONF_TYPE_INT, CONF_RANGE, -1, 999999, NULL},
 	{"er", &lavc_param_error_resilience, CONF_TYPE_INT, CONF_RANGE, 0, 99, NULL},
-	{"gray", &lavc_param_gray, CONF_TYPE_FLAG, 0, 0, CODEC_FLAG_PART, NULL},
 	{"idct", &lavc_param_idct_algo, CONF_TYPE_INT, CONF_RANGE, 0, 99, NULL},
 	{"ec", &lavc_param_error_concealment, CONF_TYPE_INT, CONF_RANGE, 0, 99, NULL},
 	{"vstats", &lavc_param_vstats, CONF_TYPE_FLAG, 0, 0, 1, NULL},
@@ -288,7 +286,6 @@
     avctx->height= sh->disp_h;
     avctx->workaround_bugs= lavc_param_workaround_bugs;
     avctx->error_resilience= lavc_param_error_resilience;
-    if(lavc_param_gray) avctx->flags|= CODEC_FLAG_GRAY;
 #ifdef CODEC_FLAG2_FAST
     avctx->flags2|= lavc_param_fast;
 #endif