[x265] [PATCH] tcomsao: replaced All Pel type into pixel type

2014-03-03 Thread gopu
# HG changeset patch # User Gopu Govindaswamy # Date 1393840762 -19800 # Mon Mar 03 15:29:22 2014 +0530 # Node ID 00c2aaba1619e32fb1e7c22bd6de85dae69c533f # Parent c0b16b145f7e3c68b03b07c3b58f73e438564af3 tcomsao: replaced All Pel type into pixel type diff -r c0b16b145f7e -r 00c2aaba1619

[x265] [PATCH] param: Add validation check for invalid colorspace to prevent crash

2014-03-03 Thread sagar
# HG changeset patch # User Sagar Kotecha sa...@multicorewareinc.com # Date 1393845552 -19800 # Mon Mar 03 16:49:12 2014 +0530 # Node ID 631d6db7f96980aa032301a2cafa21177cc524a2 # Parent 288a83d7e28999798859eba6b2f38c952cac7547 param: Add validation check for invalid colorspace to prevent

[x265] [PATCH] test bench : Modify chroma_p2s test function to handle csp

2014-03-03 Thread nabajit
# HG changeset patch # User Nabajit Deka # Date 1393847862 -19800 # Mon Mar 03 17:27:42 2014 +0530 # Node ID 5e6e06b8ec118904ad28a2d703dc9ad7956b4d44 # Parent 6662df480e39c83ab138d831f883d11fc5b052c5 test bench : Modify chroma_p2s test function to handle csp. diff -r 6662df480e39 -r

Re: [x265] [PATCH] asm: 16bpp assembly code for intra_pred_ang16 - all modes

2014-03-03 Thread Min Chen
right At 2014-02-26 13:31:58,yuva...@multicorewareinc.com wrote: # HG changeset patch # User Yuvaraj Venkatesh yuva...@multicorewareinc.com # Date 1393392700 -19800 # Wed Feb 26 11:01:40 2014 +0530 # Node ID 517be442c1d53cb34e8784a94549cb146e88cfda # Parent

Re: [x265] Build failure on MinGW GCC 4.7.1 x64, revision 288a83d

2014-03-03 Thread Steve Borho
On Mon, Mar 3, 2014 at 1:29 AM, Nikos Barkas nikbar2...@yahoo.com wrote: Building tip revision 288a83d fails with this message on MinGW x64: c:/x265/source/common/param.cpp: In function 'int x265::parseCpuName(const char*, bool)': c:/DriveD/x265Project/x265/source/common/param.cpp:738:59:

[x265] [PATCH RFC] cmake: detect strtok_r, use workaround when not present

2014-03-03 Thread Steve Borho
# HG changeset patch # User Steve Borho st...@borho.org # Date 1393875455 21600 # Mon Mar 03 13:37:35 2014 -0600 # Node ID 6adee81cbd68e5b16c28424f82caea6d4e252371 # Parent 288a83d7e28999798859eba6b2f38c952cac7547 cmake: detect strtok_r, use workaround when not present diff -r 288a83d7e289

Re: [x265] [PATCH] test bench : Modify chroma_p2s test function to handle csp

2014-03-03 Thread Steve Borho
On Mon, Mar 3, 2014 at 5:57 AM, naba...@multicorewareinc.com wrote: # HG changeset patch # User Nabajit Deka # Date 1393847862 -19800 # Mon Mar 03 17:27:42 2014 +0530 # Node ID 5e6e06b8ec118904ad28a2d703dc9ad7956b4d44 # Parent 6662df480e39c83ab138d831f883d11fc5b052c5 test bench :

[x265] [PATCH] vbv: bug fixes in --no-cutree flow. Ignore intracosts in calculating satdcost per cu

2014-03-03 Thread aarthi
# HG changeset patch # User Aarthi Thirumalai # Date 1393882980 -19800 # Tue Mar 04 03:13:00 2014 +0530 # Node ID 477ccd4a9fa78d852a999291e1a6de4b1d55bb3f # Parent 6662df480e39c83ab138d831f883d11fc5b052c5 vbv: bug fixes in --no-cutree flow. Ignore intracosts in calculating satdcost per cu.

Re: [x265] Build failure on MinGW GCC 4.7.1 x64, revision 288a83d

2014-03-03 Thread Nikos Barkas
The strtok_s function is the secure api variant of strtok. For MinGW-w64, which is what I am using - on Windows 7, not Linux - using secure api functions requires some work done in advance. The following needs to be inserted at the beginning of param.cpp: #ifdef __MINGW32__ #define

Re: [x265] [PATCH] Merged TEncCfg into Encoder. A few VUI tweaks and fixes

2014-03-03 Thread dave
On 03/03/2014 02:51 PM, Tim Walker wrote: On 03 Mar 2014, at 23:27, dtyx...@gmail.com wrote: A few VUI tweaks and fixes. Maybe something slightly more descriptive would be useful? More importantly, can you please elaborate on exactly what tweaks and fixes you did for curious people like me?

Re: [x265] [PATCH] Merged TEncCfg into Encoder. A few VUI tweaks and fixes

2014-03-03 Thread Steve Borho
On Mon, Mar 3, 2014 at 5:12 PM, dave dtyx...@gmail.com wrote: On 03/03/2014 02:51 PM, Tim Walker wrote: On 03 Mar 2014, at 23:27, dtyx...@gmail.com wrote: A few VUI tweaks and fixes. Maybe something slightly more descriptive would be useful? More importantly, can you please elaborate on

Re: [x265] Build failure on MinGW GCC 4.7.1 x64, revision 288a83d

2014-03-03 Thread Nikos Barkas
It is actually even simpler than that. Only the macro needs to be defined, string_s.h is automatically included after that. So it can be: #ifdef __MINGW32__ #define MINGW_HAS_SECURE_API 1 #endif The only catch seems to be that these three lines must be at the start of the file, before other

Re: [x265] [PATCH] Merged TEncCfg into Encoder. A few VUI tweaks and fixes

2014-03-03 Thread dave
On 03/03/2014 03:19 PM, Steve Borho wrote: On Mon, Mar 3, 2014 at 5:12 PM, dave dtyx...@gmail.com wrote: On 03/03/2014 02:51 PM, Tim Walker wrote: On 03 Mar 2014, at 23:27, dtyx...@gmail.com wrote: A few VUI tweaks and fixes. Maybe something slightly more descriptive would be useful? More

Re: [x265] [PATCH] param: Add validation check for invalid colorspace to prevent crash

2014-03-03 Thread Sagar Kotecha
value of csp is used in YUVInput(info) / Y4MInput(info) before x265_check_params() getting called. On Tue, Mar 4, 2014 at 1:57 AM, Steve Borho st...@borho.org wrote: On Mon, Mar 3, 2014 at 5:19 AM, sa...@multicorewareinc.com wrote: # HG changeset patch # User Sagar Kotecha