summaryrefslogtreecommitdiffstats
path: root/libmpcodecs/vd_ffmpeg.c
diff options
context:
space:
mode:
authormichael <michael@b3059339-0415-0410-9bf9-f77b7e298cf2>2002-12-04 12:41:57 +0000
committermichael <michael@b3059339-0415-0410-9bf9-f77b7e298cf2>2002-12-04 12:41:57 +0000
commit216d10cf2d86cee64fa7a4e1c5f1432ad1b8488d (patch)
treebb4e9055000bf29b6907e447e55489fc7c4de9ef /libmpcodecs/vd_ffmpeg.c
parent32f03d20303770f91612277ef81d34d0f442c0b3 (diff)
downloadmpv-216d10cf2d86cee64fa7a4e1c5f1432ad1b8488d.tar.bz2
mpv-216d10cf2d86cee64fa7a4e1c5f1432ad1b8488d.tar.xz
specific debug output support
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@8342 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'libmpcodecs/vd_ffmpeg.c')
-rw-r--r--libmpcodecs/vd_ffmpeg.c8
1 files changed, 7 insertions, 1 deletions
diff --git a/libmpcodecs/vd_ffmpeg.c b/libmpcodecs/vd_ffmpeg.c
index 17cfa9f03e..6ee7370e2e 100644
--- a/libmpcodecs/vd_ffmpeg.c
+++ b/libmpcodecs/vd_ffmpeg.c
@@ -70,6 +70,7 @@ 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;
struct config lavc_decode_opts_conf[]={
{"bug", &lavc_param_workaround_bugs, CONF_TYPE_INT, CONF_RANGE, -1, 99, NULL},
@@ -78,6 +79,9 @@ struct config lavc_decode_opts_conf[]={
{"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},
+#if LIBAVCODEC_BUILD >= 4642
+ {"debug", &lavc_param_debug, CONF_TYPE_INT, CONF_RANGE, 0, 9999999, NULL},
+#endif
{NULL, NULL, 0, 0, 0, 0, NULL}
};
@@ -164,7 +168,9 @@ static int init(sh_video_t *sh){
avctx->fourcc= sh->format;
avctx->idct_algo= lavc_param_idct_algo;
avctx->error_concealment= lavc_param_error_concealment;
-
+#if LIBAVCODEC_BUILD >= 4642
+ avctx->debug= lavc_param_debug;
+#endif
mp_dbg(MSGT_DECVIDEO,MSGL_DBG2,"libavcodec.size: %d x %d\n",avctx->width,avctx->height);
/* AVRn stores huffman table in AVI header */
/* Pegasus MJPEG stores it also in AVI header, but it uses the common