diff -uNrp x264vfw.o/codec.c x264vfw/codec.c --- 1/x264vfw/codec.c 2008-11-03 10:22:56 +0200 +++ 2/x264vfw/codec.c 2008-11-10 12:48:52 +0200 @@ -528,6 +528,12 @@ static int Parse(const char *cmdline, x2 { "vd-hack", no_argument, NULL, OPT_VD_HACK }, #endif { "no-output", no_argument, NULL, OPT_NO_OUTPUT }, +#if X264VFW_USE_KOMISAR_PATCH + { "threads-boost", required_argument, NULL, 0 }, + { "thread-input-boost",required_argument, NULL, 0 }, + { "log-file", required_argument, NULL, 0 }, + { "log-file-level", required_argument, NULL, 0 }, +#endif { 0, 0, 0, 0 } }; diff -uNrp x264vfw.o/resource.rc x264vfw/resource.rc --- 1/x264vfw/resource.rc 2008-11-03 10:22:56 +0200 +++ 2/x264vfw/resource.rc 2008-11-10 12:49:13 +0200 @@ -60,7 +60,7 @@ BEGIN DEFPUSHBUTTON "OK",IDOK,158,109,48,14 CTEXT "x264vfw - H.264/MPEG-4 AVC codec",IDC_STATIC,6,6,199,8 CTEXT "IDC_ABOUT_BUILD_LABEL",IDC_ABOUT_BUILD_LABEL,6,18,199,18 - CTEXT "Copyright 2005-2008 Laurent Aimar, Justin Clay, Min Chen,\nEric Petit, Mans Rullgård, Loren Merritt,\nAnton Mitrofanov (a.k.a. BugMaster)",IDC_STATIC,6,42,199,30 + CTEXT "Copyright 2005-2008 Laurent Aimar, Justin Clay, Min Chen,\nEric Petit, Mans Rullgård, Loren Merritt,\nAnton Mitrofanov (a.k.a. BugMaster), Komisar",IDC_STATIC,6,42,199,30 CTEXT "This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation.",IDC_STATIC,6,78,199,26 PUSHBUTTON "Visit Homepage",IDC_ABOUT_HOMEPAGE,7,109,77,14 END diff -uNrp x264vfw.o/x264vfw.h x264vfw/x264vfw.h --- 1/x264vfw/x264vfw.h 2008-11-03 10:22:56 +0200 +++ 2/x264vfw/x264vfw.h 2008-11-10 12:49:50 +0200 @@ -92,7 +92,7 @@ int img_convert(AVPicture *dst, int dst_ #define FOURCC_YUY2 mmioFOURCC('Y','U','Y','2') #define FOURCC_YUYV mmioFOURCC('Y','U','Y','V') -#define X264VFW_WEBSITE "http://sourceforge.net/projects/x264vfw/" +#define X264VFW_WEBSITE "http://komisar.gin.by/" /* Limits */ #define X264_BITRATE_MAX 20000 diff -uNrp x264vfw.o/x264vfw_config.h x264vfw/x264vfw_config.h --- 1/x264vfw/x264vfw_config.h 2008-11-03 10:22:56 +0200 +++ 2/x264vfw/x264vfw_config.h 2008-11-10 12:50:18 +0200 @@ -1,6 +1,7 @@ #ifndef X264VFW_X264VFW_CONFIG_H #define X264VFW_X264VFW_CONFIG_H +#define X264VFW_USE_KOMISAR_PATCH 1 #define X264VFW_USE_DECODER 1 #define X264VFW_USE_THREADS 1 #define X264VFW_USE_BUGGY_APPS_HACK 0