Re: [x265] x265 Intermittent VBV Underflow Deadlock Patch

2022-07-24 Thread Srikanth Kurapati
Hi Rob, Can you share the test cases and environment set up details as soon as possible where you observed the issue that could be helpful to verify your patches ? On Wed, 8 Jun, 2022, 22:14 Rob Arrow, wrote: > Hi, > > Sorry if you've already received this, I originally submitted the >

Re: [x265] [PATCH][master] Fix crash for main10 and main12 build when source resolution is not multiple of minCuSize for hist-scenecut

2022-06-23 Thread Srikanth Kurapati
for (int i = 0; i < > x265_cli_csps[m_param->internalCsp].planes; i++) > m_planeSizes[i] = (pic->width >> > x265_cli_csps[m_param->internalCsp].width[i]) * (pic->height >> > x265_cli_csps[m_param->internalCsp].height[i]);

Re: [x265] Wrong version info?

2022-03-13 Thread srikanth kurapati
Hi Roger, The latest development work done will be available on the master branch.  Please refer to the master branch. Sent from Mail for Windows From: Roger PackSent: 11 March 2022 10:12To: x265-develSubject: [x265] Wrong version info? Hello.As a note if I cross compile "for windows" from

Re: [x265] [PATCH] Add film grain characteristics as a SEI message to the bitstream

2022-03-03 Thread Srikanth Kurapati
0_parkrun_ter.y4m,--preset medium > 720p50_parkrun_ter.y4m,--preset=fast --hevc-aq --no-cutree > +# Test FG SEI message addition > +# CrowdRun_1920x1080_50_10bit_444.yuv,--preset=ultrafast --weightp > --keyint -1 --film-grain "CrowdRun_1920x1080_50_10bit_444.bin" > +# DucksAndLegs_1920x1080_60_10bit_422.yuv,--preset=veryfast --min-cu 16 > --film-grain "DucksAndLegs_1920x1080_60_10bit_422.bin" > +# NebutaFestival_2560x1600_60_10bit_crop.yuv,--preset=superfast --bitrate > 1 --sao --limit-sao --cll --max-cll "1000,400" --film-grain > "NebutaFestival_2560x1600_60_10bit_crop.bin" > diff --git a/source/x265.h b/source/x265.h > index bf945498f..5d242d653 100644 > --- a/source/x265.h > +++ b/source/x265.h > @@ -1989,6 +1989,9 @@ typedef struct x265_param > /* Flag to turn on/off traditional scenecut detection in histogram > based scenecut detection. > * When false, only spatial properties are used for scenecut > detection. Default true */ > int bEnableTradScdInHscd; > + > +/* Film Grain Characteristic file */ > +char* filmGrain; > } x265_param; > > /* x265_param_alloc: > diff --git a/source/x265cli.cpp b/source/x265cli.cpp > index bfb6293f3..3a03de579 100755 > --- a/source/x265cli.cpp > +++ b/source/x265cli.cpp > @@ -391,6 +391,9 @@ namespace X265_NS { > H1("2 - unable to open encoder\n"); > H1("3 - unable to generate stream headers\n"); > H1("4 - encoder abort\n"); > +H0("\nSEI Message Options\n"); > +H0(" --film-grainFile containing Film > Grain Characteristics to be written as a SEI Message\n"); > + > #undef OPT > #undef H0 > #undef H1 > diff --git a/source/x265cli.h b/source/x265cli.h > index 8fcf37b8a..7072f7616 100644 > --- a/source/x265cli.h > +++ b/source/x265cli.h > @@ -380,6 +380,7 @@ static const struct option long_options[] = > { "abr-ladder", required_argument, NULL, 0 }, > { "min-vbv-fullness", required_argument, NULL, 0 }, > { "max-vbv-fullness", required_argument, NULL, 0 }, > +{ "film-grain", required_argument, NULL, 0 }, > { 0, 0, 0, 0 }, > { 0, 0, 0, 0 }, > { 0, 0, 0, 0 }, > -- > 2.20.1.windows.1 > > ___ > x265-devel mailing list > x265-devel@videolan.org > https://mailman.videolan.org/listinfo/x265-devel > -- *With Regards,* *Srikanth Kurapati.* ___ x265-devel mailing list x265-devel@videolan.org https://mailman.videolan.org/listinfo/x265-devel

[x265] [Documentation PATCH][master, release 3.5] edits documentation for version option as per release 3.5 functionality

2021-03-02 Thread Srikanth Kurapati
>From ffe3d68604aedaecc483e687e6b294b68e978016 Mon Sep 17 00:00:00 2001 From: Srikanth Kurapati Date: Tue, 2 Mar 2021 16:22:09 +0530 Subject: [PATCH] edits documentation for version option as per release 3.5 functionality --- doc/reST/cli.rst | 17 +++-- 1 file changed

[x265] [X265] [Patch] [Master, Release 3.5] fix: corrects output mismatch for cutree enabled analysis save/load encodes with reuse-levels in between 1 to 10 for similar encoder settings.

2021-02-01 Thread Srikanth Kurapati
>From cd1f18eb201c50a63bf15a5ac1d972ae1ca8ceb4 Mon Sep 17 00:00:00 2001 From: Srikanth Kurapati Date: Wed, 30 Dec 2020 17:00:08 +0530 Subject: [PATCH] fix: corrects output mismatch for cutree enabled analysis save/load encodes with reuse-levels in between 1 to 10 for similar encoder setti

Re: [x265] [X265] [Patch] [Master, Release 3.5] fix: corrects output mismatch for cutree enabled analysis save/load encodes with reuse-levels in between 1 to 10 for similar encoder settings.

2021-01-28 Thread Srikanth Kurapati
Please ignore this patch. Will resend the final version. On Wed, Jan 27, 2021 at 6:23 PM Srikanth Kurapati < srikanth.kurap...@multicorewareinc.com> wrote: > From a54176cf1fc83c3aebb0f4f4f2b6383d3b50ebde Mon Sep 17 00:00:00 2001 > From: Srikanth Kurapati > Date: Wed, 30 Dec 2020

[x265] [X265] [Patch] [Master, Release 3.5] fix: corrects output mismatch for cutree enabled analysis save/load encodes with reuse-levels in between 1 to 10 for similar encoder settings.

2021-01-27 Thread Srikanth Kurapati
>From a54176cf1fc83c3aebb0f4f4f2b6383d3b50ebde Mon Sep 17 00:00:00 2001 From: Srikanth Kurapati Date: Wed, 30 Dec 2020 17:00:08 +0530 Subject: [PATCH] fix: corrects output mismatch for cutree enabled analysis save/load encodes with reuse-levels in between 1 to 10 for similar encoder setti

Re: [x265] [Patch] fix: corrects output mismatch for cutree enabled analysis save/load enodes with reuse-levels in between 1 to 10 for similar encoder settings.

2021-01-23 Thread Srikanth Kurapati
1, 2021 at 5:34 PM Srikanth Kurapati < > srikanth.kurap...@multicorewareinc.com> wrote: > >> >> Adding to my reply above. >> >> [AM] Why MAX_NUM_CU_GEOMS combinations? >> >> [KS] Will optimize storage based on min-cu-size configuration. >>

Re: [x265] [Patch] fix: corrects output mismatch for cutree enabled analysis save/load enodes with reuse-levels in between 1 to 10 for similar encoder settings.

2021-01-21 Thread Srikanth Kurapati
OFF cutree at reuse-level 1? [KS] Agreed and addressed. On Tue, Jan 19, 2021 at 11:12 PM Aruna Matheswaran < ar...@multicorewareinc.com> wrote: > > > On Mon, Jan 11, 2021 at 8:08 PM Srikanth Kurapati < > srikanth.kurap...@multicorewareinc.

[x265] [x265 Documentation] [WiKi Pages PATCH] x265 wiki page updates for release version 3.5

2021-01-17 Thread Srikanth Kurapati
>From 22613d8e014fd52b0b1114d29cef9a0673787fb0 Mon Sep 17 00:00:00 2001 From: Srikanth Kurapati Date: Wed, 14 Oct 2020 13:40:10 +0530 Subject: [PATCH] x265 wiki page updates for release version 3.5 includes archival procedure updates plus general edits in home and contribute pa

[x265] [x265 documentation] [Master, Release 3.5] edit version information cli options section

2021-01-11 Thread Srikanth Kurapati
>From 820b91b1d62aaf1edd97cd0d26007bd5648681c0 Mon Sep 17 00:00:00 2001 From: Srikanth Kurapati Date: Mon, 11 Jan 2021 20:01:38 +0530 Subject: [PATCH] documentation edit for version options --- doc/reST/cli.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/reST/cli.

[x265] [Patch] fix: corrects output mismatch for cutree enabled analysis save/load enodes with reuse-levels in between 1 to 10 for similar encoder settings.

2021-01-11 Thread Srikanth Kurapati
>From d516d0564888e154d88d89320302725d87bfab78 Mon Sep 17 00:00:00 2001 From: Srikanth Kurapati Date: Wed, 30 Dec 2020 17:00:08 +0530 Subject: [PATCH] fix: corrects output mismatch for cutree enabled analysis save/load enodes with reuse-levels in between 1 to 10 for similar encoder setti

Re: [x265] [PATCH] [Release_3.5] correct reusing cutree qp offsets in load encode for reuse-level > 1 and < 10 for same resolution

2021-01-07 Thread Srikanth Kurapati
; ctu->m_numPartitions); >> } >> } >> >> if ((analysis->sliceType == X265_TYPE_IDR || analysis->sliceType >> == X265_TYPE_I) && m_param->rc.cuTree) >> -analysis->frameRecordSize += sizeof(uint8_t)* >> analysis->numCUsInFrame *

[x265] [X265] [Patch] [Master, Release 3.5] Fixes cmake backward compatibility issues for version control script

2021-01-05 Thread Srikanth Kurapati
>From 1983a69a00424bed9f66b34bddf09cd2165b31c1 Mon Sep 17 00:00:00 2001 From: Srikanth Kurapati Date: Thu, 31 Dec 2020 16:35:27 +0530 Subject: [PATCH] Fixes cmake backward compatibility issues for version control script --- source/cmake/Version.cmake | 6 +++--- 1 file changed, 3 inserti

Re: [x265] [Patch] [Master, Release 3.5] Fixes cmake backward compatibility issues for version control script

2021-01-05 Thread Srikanth Kurapati
addressed review comments from @Aruna Matheswaran On Mon, Jan 4, 2021 at 2:30 PM Srikanth Kurapati < srikanth.kurap...@multicorewareinc.com> wrote: > From cf1f533ff312eda5896f9cfe00bb842c60a3bf5f Mon Sep 17 00:00:00 2001 > From: Srikanth Kurapati > Date: Thu, 31 Dec 2020

[x265] [Patch] [Master, Release 3.5] Fixes cmake backward compatibility issues for version control script

2021-01-04 Thread Srikanth Kurapati
>From cf1f533ff312eda5896f9cfe00bb842c60a3bf5f Mon Sep 17 00:00:00 2001 From: Srikanth Kurapati Date: Thu, 31 Dec 2020 16:35:27 +0530 Subject: [PATCH] Fixes cmake backward compatibility issues for version control script --- source/cmake/Version.cmake | 9 - 1 file changed, 4 inserti

[x265] [X265] [Final Patch] fix: avoids unnecessary lexicographic order checks on git changesets

2020-12-24 Thread Srikanth Kurapati
>From d3eefd984eb0f2d1b9bb0ab0c0393eeb3e0cf643 Mon Sep 17 00:00:00 2001 From: Srikanth Kurapati Date: Wed, 16 Dec 2020 10:52:33 +0530 Subject: [PATCH] fix: avoids unnecessary lexicographic order checks on git changesets also corrects variables used for git archive version report

Re: [x265] [X265] [Fix Patch] [Master, Release 3.5 branches] Fix: avoids unnecessary lexicographic order checks on git changesets

2020-12-24 Thread Srikanth Kurapati
Done. Also added validation for tag distance as part of version information syntax analysis and for optimizing further processing of file contents. On Thu, Dec 24, 2020 at 7:06 PM Aruna Matheswaran < ar...@multicorewareinc.com> wrote: > > > On Thu, Dec 24, 2020 at 6:22 PM Sr

Re: [x265] [X265] [Fix Patch] [Master, Release 3.5 branches] Fix: avoids unnecessary lexicographic order checks on git changesets

2020-12-24 Thread Srikanth Kurapati
3, 2020 at 9:40 PM Srikanth Kurapati < > srikanth.kurap...@multicorewareinc.com> wrote: > >> From 06e09d500b9453b32835a6090df873b7b5842f22 Mon Sep 17 00:00:00 2001 >> From: Srikanth Kurapati >> Date: Wed, 16 Dec 2020 10:52:33 +0530 >> Subject: [PATCH] fix: a

[x265] [X265] [Fix Patch] [Master, Release 3.5 branches] Fix: avoids unnecessary lexicographic order checks on git changesets

2020-12-23 Thread Srikanth Kurapati
>From 06e09d500b9453b32835a6090df873b7b5842f22 Mon Sep 17 00:00:00 2001 From: Srikanth Kurapati Date: Wed, 16 Dec 2020 10:52:33 +0530 Subject: [PATCH] fix: avoids unnecessary lexicographic order checks on git changesets and correct variables used for git archive version reporting --- sou

Re: [x265] [X265] [Fix Patch] [Master, Release 3.5 branches] fix: avoids unnecessary lexicographic order checks on git changesets, corrects version reporting

2020-12-23 Thread Srikanth Kurapati
On Tue, Dec 22, 2020 at 7:00 PM Aruna Matheswaran < ar...@multicorewareinc.com> wrote: > > > On Tue, Dec 22, 2020 at 2:25 PM Srikanth Kurapati < > srikanth.kurap...@multicorewareinc.com> wrote: > >> >> From 123a406a4845ec228bd234693115e6ffb6bc423f Mon

[x265] [X265] [Fix Patch] [Master, Release 3.5 branches] fix: avoids unnecessary lexicographic order checks on git changesets, corrects version reporting

2020-12-22 Thread Srikanth Kurapati
>From 123a406a4845ec228bd234693115e6ffb6bc423f Mon Sep 17 00:00:00 2001 From: Srikanth Kurapati Date: Wed, 16 Dec 2020 10:52:33 +0530 Subject: [PATCH] fix: avoids unnecessary lexicographic order checks on git changesets and correct variables used for git archive version reporting --- sou

Re: [x265] [Patch] [Master, Release 3.5] Fix: avoids unnecessary lexicographic order checks on git changesets

2020-12-22 Thread Srikanth Kurapati
I have an update for this patch wrt to the correctness in the version string. I am sending a cumulative patch altogether. On Sat, Dec 19, 2020 at 10:05 PM Srikanth Kurapati < srikanth.kurap...@multicorewareinc.com> wrote: > From bda79a8f23f52bbfc9eca663c04ce831d39c81f2 Mon Sep 17 00:0

[x265] [Patch] [Master, Release 3.5] Fix: avoids unnecessary lexicographic order checks on git changesets

2020-12-19 Thread Srikanth Kurapati
>From bda79a8f23f52bbfc9eca663c04ce831d39c81f2 Mon Sep 17 00:00:00 2001 From: Srikanth Kurapati Date: Wed, 16 Dec 2020 10:52:33 +0530 Subject: [PATCH] fix: avoids unnecessary lexicographic order checks on git changesets --- source/cmake/Version.cmake | 20 1 file chan

Re: [x265] [X265] [Patch] [Master, Release 3.5 branches] Fix: avoid unnecessary lexicographic order checks on git changesets leading to cmake errors

2020-12-19 Thread Srikanth Kurapati
Please skip this patch. On Wed, Dec 16, 2020 at 2:39 PM Srikanth Kurapati < srikanth.kurap...@multicorewareinc.com> wrote: > From a92be8c6b1e1a4cf5ba1f3b58518b860fcea38bc Mon Sep 17 00:00:00 2001 > From: Srikanth Kurapati > Date: Wed, 16 Dec 2020 10:52:33 +0530 > Subject: [

[x265] [X265] [Patch] [Master, Release 3.5 branches] Fix: avoid unnecessary lexicographic order checks on git changesets leading to cmake errors

2020-12-16 Thread Srikanth Kurapati
>From a92be8c6b1e1a4cf5ba1f3b58518b860fcea38bc Mon Sep 17 00:00:00 2001 From: Srikanth Kurapati Date: Wed, 16 Dec 2020 10:52:33 +0530 Subject: [PATCH] fix: avoids unnecessary lexicographic order checks on git changesets --- source/cmake/Version.cmake | 12 ++-- 1 file changed

[x265] [Patch] [Master branch] Fix version information reporting for x265 git archival

2020-12-13 Thread Srikanth Kurapati
>From 7e2f4cf13b2b2f27298ec805ca118cc12018434f Mon Sep 17 00:00:00 2001 From: Srikanth Kurapati Date: Thu, 26 Nov 2020 19:13:42 +0530 Subject: [PATCH] Fix version information reporting for x265 git archival Release branch 3.5 (cherry picked from commit ba724aa39a938695b821e5f2bda1112687f3d

[x265] [Patch] [Release 3.5 branch ] Fix version information reporting for x265 git archival

2020-12-13 Thread Srikanth Kurapati
>From ba724aa39a938695b821e5f2bda1112687f3dde0 Mon Sep 17 00:00:00 2001 From: Srikanth Kurapati Date: Thu, 26 Nov 2020 19:13:42 +0530 Subject: [PATCH] Fix version information reporting for x265 git archival Release branch 3.5 --- doc/reST/cli.rst | 17 +++- source/CMakeLists.

[x265] [x265 Patch] [All branches] perform version data integrity checks for git archive repositories.

2020-11-05 Thread Srikanth Kurapati
>From f262afa2155404f6f4eb28c4f0dd1aa086c1feb4 Mon Sep 17 00:00:00 2001 From: Srikanth Kurapati Date: Thu, 5 Nov 2020 19:10:55 +0530 Subject: [PATCH] perform version data integrity checks for git archive repositories. --- source/cmake/Version.cmake |

[x265] [x265 Patch 2/2] [Release 3.1 branch] updates version file for release branch 3.1

2020-11-03 Thread Srikanth Kurapati
>From e4934e8036b4fdd14b967dcb52c698755da6b234 Mon Sep 17 00:00:00 2001 From: Srikanth Kurapati Date: Wed, 4 Nov 2020 12:29:53 +0530 Subject: [PATCH 2/2] updates version file for release branch 3.1 --- x265Version.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --

[x265] [x265 Patch 1/2] [Release 3.1 branch] Fix incorrect version display issue on console for archived repositories.

2020-11-03 Thread Srikanth Kurapati
>From 805debe02d5faeb75ff5f2e463a434065bbe3b4a Mon Sep 17 00:00:00 2001 From: Srikanth Kurapati Date: Wed, 4 Nov 2020 12:22:32 +0530 Subject: [PATCH 1/2] Fix incorrect version display issue on console for archived repositories. 1. adds a new file x265version.txt to maintain version informat

[x265] [x265 Patch 2/2] [Release branch 3.2] updates version file for release branch 3.2

2020-11-03 Thread Srikanth Kurapati
>From 7aa2cfc33db31a48c9c31b4e7fcd69be1f2b6bb7 Mon Sep 17 00:00:00 2001 From: Srikanth Kurapati Date: Wed, 4 Nov 2020 10:43:06 +0530 Subject: [PATCH 2/2] updates version file for release branch 3.2 --- x265Version.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --

[x265] [x265 Patch 1/2] [Release branch 3.2] Fix incorrect version display issue on console for archived repositories.

2020-11-03 Thread Srikanth Kurapati
>From 7daf980fa3b754da448d250ad04d723f6fd51355 Mon Sep 17 00:00:00 2001 From: Srikanth Kurapati Date: Wed, 4 Nov 2020 10:37:06 +0530 Subject: [PATCH 1/2] Fix incorrect version display issue on console for archived repositories. 1. adds a new file x265version.txt to maintain version informat

[x265] [x265 Patch 2/2] [Release 3.3 branch] updates version file for release branch 3.3

2020-11-03 Thread Srikanth Kurapati
>From abbee47dfd11c44fdde3caab694ca485327e3d94 Mon Sep 17 00:00:00 2001 From: Srikanth Kurapati Date: Tue, 3 Nov 2020 19:33:24 +0530 Subject: [PATCH 2/2] updates version file for release branch 3.3 --- x265Version.txt | 8 1 file changed, 4 insertions(+), 4 deletions(-) diff --

[x265] [x265 Patch 1/2] [Release 3.3 branch] Fix incorrect version display issue on console for archived repositories.

2020-11-03 Thread Srikanth Kurapati
>From aa14ce529df826e6ddbb29987cc7f13d0d74f744 Mon Sep 17 00:00:00 2001 From: Srikanth Kurapati Date: Tue, 13 Oct 2020 20:46:56 +0530 Subject: [PATCH 1/2] Fix incorrect version display issue on console for archived repositories. 1. adds a new file x265version.txt to maintain version informat

[x265] [x265 PATCH 2/2] [Release 3.4 branch] updates version file for release 3.4 branch

2020-11-03 Thread Srikanth Kurapati
>From d5ad911631af934c8a1631a0dceb9c24ee145e6f Mon Sep 17 00:00:00 2001 From: Srikanth Kurapati Date: Tue, 3 Nov 2020 18:55:42 +0530 Subject: [PATCH 2/2] updates version file for release 3.4 branch --- x265Version.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --

[x265] [x265 PATCH 1/2] [Release 3.4 branch] Fix incorrect version display issue on console for archived repositories.

2020-11-03 Thread Srikanth Kurapati
>From 59dc50b4ea0cd1de988bd341321c5baa5b94385f Mon Sep 17 00:00:00 2001 From: Srikanth Kurapati Date: Tue, 13 Oct 2020 20:46:56 +0530 Subject: [PATCH 1/2] Fix incorrect version display issue on console for archived repositories. 1. adds a new file x265version.txt to maintain version informat

Re: [x265] [x265 Patch 2/2] [Master branch] updates version file for master branch

2020-11-03 Thread Srikanth Kurapati
On Tue, Nov 3, 2020 at 6:37 PM Srikanth Kurapati < srikanth.kurap...@multicorewareinc.com> wrote: > From 979c887c5e571320ace6dc008b97834c9d542071 Mon Sep 17 00:00:00 2001 > From: Srikanth Kurapati > Date: Tue, 3 Nov 2020 18:34:29 +0530 > Subject: [PATCH 2/2] updates versi

[x265] [x265 Patch 2/2] [Master branch] updates version file for master branch

2020-11-03 Thread Srikanth Kurapati
>From 979c887c5e571320ace6dc008b97834c9d542071 Mon Sep 17 00:00:00 2001 From: Srikanth Kurapati Date: Tue, 3 Nov 2020 18:34:29 +0530 Subject: [PATCH 2/2] updates version file for master branch --- x265Version.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --

[x265] [x265 Patch 2/2] [Release 3.5 branch] updates version file for release 3.5 branch

2020-11-03 Thread Srikanth Kurapati
>From c39477617fdbfd82afe1cf4004eb39fb05b8965f Mon Sep 17 00:00:00 2001 From: Srikanth Kurapati Date: Tue, 3 Nov 2020 18:17:40 +0530 Subject: [PATCH 2/2] update version file for release 3.5 branch --- x265Version.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --

[x265] [X265 Patch 1/2] [Release 3.5 branch] Adds support for archival and version reporting for git repositories

2020-11-03 Thread Srikanth Kurapati
>From a0d2f096d7daa08616fdb4376dcedfb59979ba5f Mon Sep 17 00:00:00 2001 From: Srikanth Kurapati Date: Tue, 13 Oct 2020 20:46:56 +0530 Subject: [PATCH 1/2] Fix incorrect version display issue on console for archived repositories. 1. adds a new file x265version.txt to maintain version informat

[x265] [x265 Patch] [Master branch] Adds support for archival and version reporting for git repositories

2020-11-03 Thread Srikanth Kurapati
>From a935e38da6b7c870c754e95a5867cf631a5087b8 Mon Sep 17 00:00:00 2001 From: Srikanth Kurapati Date: Tue, 13 Oct 2020 20:46:56 +0530 Subject: [PATCH] Fix incorrect version display issue on console for archived repositories. 1. adds a new file x265version.txt to maintain version informat

Re: [x265] [X265] [PATCH] [Master and Release 3.x] Adds support for archival and version reporting for git repositories

2020-11-01 Thread Srikanth Kurapati
hu, Oct 29, 2020 at 9:39 PM Aruna Matheswaran < ar...@multicorewareinc.com> wrote: > > > On Tue, Oct 20, 2020 at 6:57 PM Srikanth Kurapati < > srikanth.kurap...@multicorewareinc.com> wrote: > >> From 07b19f58c24f5c9919f49309a9e299aae825f784 Mon Sep 17 00:00:00 2001 >&

Re: [x265] [PATCH] [Wiki MASTER] Updates to home and contribute pages for git archives and repository

2020-10-20 Thread Srikanth Kurapati
Updated as per changes to version.cmake files based on patch review by @Aruna Matheswaran >From 4b7f7997e9eab918f9c7d32971609e5fe1c19796 Mon Sep 17 00:00:00 2001 From: Srikanth Kurapati Date: Wed, 14 Oct 2020 13:40:10 +0530 Subject: [PATCH] Wiki changes for x265 Release 3.5 Archival proced

Re: [x265] [X265] [PATCH] [Master and Release 3.x] Adds support for archival and version reporting for git repositories

2020-10-20 Thread Srikanth Kurapati
>From 07b19f58c24f5c9919f49309a9e299aae825f784 Mon Sep 17 00:00:00 2001 From: Srikanth Kurapati Date: Tue, 13 Oct 2020 20:46:56 +0530 Subject: [PATCH] Fix incorrect version display issue on console for archived repositories. 1. adds a new file x265version.txt to maintain version informat

Re: [x265] [X265] [PATCH] [Master and Release 3.x] Adds support for archival and version reporting for git repositories

2020-10-20 Thread Srikanth Kurapati
On Mon, Oct 19, 2020 at 9:09 PM Aruna Matheswaran < ar...@multicorewareinc.com> wrote: > > > On Sun, Oct 18, 2020 at 5:28 PM Srikanth Kurapati < > srikanth.kurap...@multicorewareinc.com> wrote: > >> From 89c497c96918c22aa4dd074e603ec8ce56982415 Mon Sep 17 00:00:0

[x265] [X265] [PATCH] [Master and Release 3.x] Adds support for archival and version reporting for git repositories

2020-10-18 Thread Srikanth Kurapati
>From 89c497c96918c22aa4dd074e603ec8ce56982415 Mon Sep 17 00:00:00 2001 From: Srikanth Kurapati Date: Tue, 13 Oct 2020 20:46:56 +0530 Subject: [PATCH] fix enables git repository archival for x265 release versions --- doc/reST/cli.rst | 8 +- source/CMakeLists.txt |

[x265] [PATCH] [Wiki MASTER] Updates to home and contribute pages for git archives and repository

2020-10-18 Thread Srikanth Kurapati
>From 940c34742e5f94ef3929c214bed221815940662b Mon Sep 17 00:00:00 2001 From: Srikanth Kurapati Date: Wed, 14 Oct 2020 13:40:10 +0530 Subject: [PATCH] Wiki changes for x265 Release 3.5 Archival procedure updates plus general edits in home and contribute pages --- Contribute.md |

Re: [x265] [PATCH] [branches master, 3.4, 3.5] Fixes inconsistency in rskip 2 at slow presets

2020-10-12 Thread Srikanth Kurapati
Please skip this patch for testing. Review in progress. On Tue, 6 Oct, 2020, 11:10 Srikanth Kurapati, < srikanth.kurap...@multicorewareinc.com> wrote: > From b5b5194847c924bafcae7293d9a56fcc5a98339b Mon Sep 17 00:00:00 2001 > From: Srikanth Kurapati > Date: Wed, 30 Sep 2020

[x265] [PATCH] [branches master, 3.4, 3.5] Fixes inconsistency in rskip 2 at slow presets

2020-10-05 Thread Srikanth Kurapati
>From b5b5194847c924bafcae7293d9a56fcc5a98339b Mon Sep 17 00:00:00 2001 From: Srikanth Kurapati Date: Wed, 30 Sep 2020 12:39:25 +0530 Subject: [PATCH] Fixes inconsistency in rskip 2 for slow presets Considers the following based on rd levels a) colocated CTU depth information. b) skip decisi

Re: [x265] [PATCH] fix: help for rskip cli option to avoid make errors

2020-09-23 Thread Srikanth Kurapati
>From 00a099092918fa9899cbd445129443cfdbfa8860 Mon Sep 17 00:00:00 2001 From: Srikanth Kurapati Date: Wed, 23 Sep 2020 19:13:53 +0530 Subject: [PATCH] edit: help documentation for recursion skip --- source/x265cli.cpp | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --

[x265] [PATCH] fix: help for rskip cli option to avoid make errors

2020-09-16 Thread Srikanth Kurapati
>From a92bc566e03f473af25db8f78d1eb3f40106a959 Mon Sep 17 00:00:00 2001 From: Srikanth Kurapati Date: Fri, 4 Sep 2020 11:06:39 +0530 Subject: [PATCH] fix: help for rskip cli option to avoid make errors --- source/x265cli.cpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --

Re: [x265] How to use the abr-ladder option on ffmpeg

2020-09-16 Thread Srikanth Kurapati
ds, >> *Aruna Matheswaran,* >> Video Codec Engineer, >> Media & AI analytics BU, >> >> >> >> ___ >> x265-devel mailing list >> x265-devel@videolan.org >> https://mailman.videolan.org/listinfo/x265-devel >> > ___ > x265-devel mailing list > x265-devel@videolan.org > https://mailman.videolan.org/listinfo/x265-devel > -- *With Regards,* *Srikanth Kurapati.* ___ x265-devel mailing list x265-devel@videolan.org https://mailman.videolan.org/listinfo/x265-devel

[x265] Canceled event: [PATCH] cli.rst: Updating reference_scaling and DC... @ Mon Aug 31, 2020 7pm - 7:30pm (IST) (x265-devel@videolan.org)

2020-08-31 Thread srikanth . kurapati
BEGIN:VCALENDAR PRODID:-//Google Inc//Google Calendar 70.9054//EN VERSION:2.0 CALSCALE:GREGORIAN METHOD:CANCEL BEGIN:VEVENT DTSTART:20200831T133000Z DTEND:20200831T14Z DTSTAMP:20200831T133249Z ORGANIZER;CN=srikanth.kurap...@multicorewareinc.com:mailto:srikanth.kurapat

Re: [x265] [PATCH] cli.rst: Updating reference_scaling and DCIP3_4K_to_400_dynamic documentation

2020-08-31 Thread Srikanth Kurapati
Sorry. Please omit the above the email invite. reply generated on the wrong email chain. On Mon, Aug 31, 2020 at 6:06 PM wrote: > Srikanth Kurapati is inviting you to a scheduled Zoom meeting. > > Topic: [x265] [PATCH] cli.rst: Updating reference_scaling and > DCIP3_4K_to

[x265] Invitation: [PATCH] cli.rst: Updating reference_scaling and DC... @ Mon Aug 31, 2020 7pm - 7:30pm (IST) (x265-devel@videolan.org)

2020-08-31 Thread srikanth . kurapati
BEGIN:VCALENDAR PRODID:-//Google Inc//Google Calendar 70.9054//EN VERSION:2.0 CALSCALE:GREGORIAN METHOD:REQUEST BEGIN:VEVENT DTSTART:20200831T133000Z DTEND:20200831T14Z DTSTAMP:20200831T123616Z ORGANIZER;CN=srikanth.kurap...@multicorewareinc.com:mailto:srikanth.kurapat

Re: [x265] [PATCH] cli.rst: Updating reference_scaling and DCIP3_4K_to_400_dynamic documentation

2020-08-31 Thread srikanth . kurapati
Srikanth Kurapati is inviting you to a scheduled Zoom meeting. Topic: [x265] [PATCH] cli.rst: Updating reference_scaling and DCIP3_4K_to_400_dynamic documentation Time: Aug 31, 2020 07:00 PM India Join Zoom Meeting https://zoom.us/j/95859642141?pwd=SnRnY1ZQZzFmenlXZGMvbXcxZ3llUT09 Meeting ID

[x265] PATCH documentation fix for rskip 2 threshold

2020-08-25 Thread Srikanth Kurapati
# HG changeset patch # User Srikanth Kurapati # Date 1596693977 -19800 # Thu Aug 06 11:36:17 2020 +0530 # Node ID 4fd5e5a02648749302abf517b1822b91583e6afe # Parent 73ca1d7be3779ed6eb4cbbc4cdb3bec6371472b6 documentation fix for rskip 2 threshold diff --git a/doc/reST/cli.rst b/doc/reST

[x265] [PATCH] Fixed rskip 2 threshold documentation

2020-08-07 Thread Srikanth Kurapati
# HG changeset patch # User Srikanth Kurapati # Date 1596693977 -19800 # Thu Aug 06 11:36:17 2020 +0530 # Node ID 4fd5e5a02648749302abf517b1822b91583e6afe # Parent 73ca1d7be3779ed6eb4cbbc4cdb3bec6371472b6 documentation fix for rskip 2 threshold diff --git a/doc/reST/cli.rst b/doc/reST

Re: [x265] [PATCH]Fixed the --hist-scenecut feature to consider the max variation in chroma histograms along with luma edge histograms. Also fixed the formula for normalizing both the SAD values from

2020-06-10 Thread Srikanth Kurapati
Luma Edge histogram's > Normalized SAD threshold for histogram based scenecut detection Default > %.2f\n", param->edgeTransitionThreshold); > +H1(" --hist-threshold <0.0..1.0> Luma Edge histogram's > Normalized SAD threshold for histogram based scenecut detection Default > %.2f\n", param->edgeTransitionThreshold); > H0(" --[no-]fades Enable detection and > handling of fade-in regions. Default %s\n", OPT(param->bEnableFades)); > H1(" --[no-]scenecut-aware-qp Enable increasing QP for > frames inside the scenecut window after scenecut. Default %s\n", > OPT(param->bEnableSceneCutAwareQp)); > H1(" --scenecut-window <0..1000> QP incremental duration(in > milliseconds) when scenecut-aware-qp is enabled. Default %d\n", > param->scenecutWindow); > @@ -1059,4 +1059,4 @@ namespace X265_NS { > > #ifdef __cplusplus > } > -#endif > \ No newline at end of file > +#endif > -- > 1.8.3.1 > > ___ > x265-devel mailing list > x265-devel@videolan.org > https://mailman.videolan.org/listinfo/x265-devel > OverAll impression: Good 1. good code optimization techniques. 2. improvised naming conventions. 3. fixed normalization and thresholding logic, documentation fixes -- *With Regards,* *Srikanth Kurapati.* ___ x265-devel mailing list x265-devel@videolan.org https://mailman.videolan.org/listinfo/x265-devel

Re: [x265] Store histogram of Y, U, V and Y's edge in analysis file.

2020-05-12 Thread Srikanth Kurapati
m_planeSizes[2]; i++) >>>>>> { >>>>>> pixelVal = planeV[i]; >>>>>> @@ -1488,7 +1494,7 @@ >>>>>> } >>>>>> else >>>>>> { /* in case of bi planar color space */

[x265] [PATCH] EQT Updates

2020-05-06 Thread srikanth . kurapati
# HG changeset patch # User Srikanth Kurapati # Date 1588752449 -19800 # Wed May 06 13:37:29 2020 +0530 # Node ID df0886d58b867e7bd219ec3f8197bab22417795c # Parent 303ff9e4546d0052e7a4d359323f0aca84eedd68 EQT Updates. 1. Improves documentation in help and x265readthedocs for rskip cli

Re: [x265] [PATCH]: EQT feature updates

2020-05-06 Thread Srikanth Kurapati
updated the same. I will send the final patch. On Tue, May 5, 2020 at 10:37 PM Aruna Matheswaran < ar...@multicorewareinc.com> wrote: > > > On Mon, May 4, 2020 at 7:06 PM Srikanth Kurapati < > srikanth.kurap...@multicorewareinc.com> wrote: > >> this p

Re: [x265] [PATCH] EQT feature updates

2020-05-06 Thread Srikanth Kurapati
Please ignore. I will resend the final one again. On Wed, May 6, 2020 at 12:22 PM wrote: > # HG changeset patch > # User Srikanth Kurapati > # Date 1588584544 -19800 > # Mon May 04 14:59:04 2020 +0530 > # Node ID 7032ea69207814bcb3795165c15e0ae279ec

[x265] [PATCH] EQT feature updates

2020-05-06 Thread srikanth . kurapati
# HG changeset patch # User Srikanth Kurapati # Date 1588584544 -19800 # Mon May 04 14:59:04 2020 +0530 # Node ID 7032ea69207814bcb3795165c15e0ae279ec4d52 # Parent 303ff9e4546d0052e7a4d359323f0aca84eedd68 EQT feature updates. 1. Improves documentation in help and x265readthedocs for rskip

[x265] [PATCH] Fix: clis in regression txt file

2020-03-23 Thread srikanth . kurapati
# HG changeset patch # User Srikanth Kurapati # Date 1584974021 -19800 # Mon Mar 23 20:03:41 2020 +0530 # Node ID 2656c74418a644b4cfa086631cfc43afc4a16076 # Parent d769bc8e8cde0b11875b56b3e48c596d359909de Fix: clis in regression txt file. 1. corrects file naming convention. 2. updates

Re: [x265] [PATCH] Fix: segmentation fault for hist-scenecut option

2020-03-19 Thread Srikanth Kurapati
will be computed on the encoder bit depth only. On Wed, Mar 18, 2020 at 8:31 PM Aruna Matheswaran < ar...@multicorewareinc.com> wrote: > > > On Tue, Mar 17, 2020 at 2:48 PM > wrote: > >> # HG changeset patch >> # User Srikanth Kurapati >> # Date 1584430274 -1

[x265] [PATCH] Fix: segmentation fault for hist-scenecut option

2020-03-17 Thread srikanth . kurapati
# HG changeset patch # User Srikanth Kurapati # Date 1584430274 -19800 # Tue Mar 17 13:01:14 2020 +0530 # Node ID b7a02a40bc5d97308d41b925f9c37df414ab6ecb # Parent b7b0de75112b8022789590640662f2fab956cfbe Fix: segmentation fault for hist-scenecut option fixes plane size calculation

[x265] [PATCH] clean up EQT feature patch

2020-03-16 Thread srikanth . kurapati
# HG changeset patch # User Srikanth Kurapati # Date 1582284738 -19800 # Fri Feb 21 17:02:18 2020 +0530 # Node ID b7b0de75112b8022789590640662f2fab956cfbe # Parent ecf19726600a3218c10eb28dcfded16d2a18c301 clean up EQT feature patch. 1. Improves documentation in help and x265readthedocs

[x265] [PATCH] clean up EQT feature patch

2020-02-24 Thread srikanth . kurapati
# HG changeset patch # User Srikanth Kurapati # Date 1582284738 -19800 # Fri Feb 21 17:02:18 2020 +0530 # Node ID 27ddd2d2ff94273553734e21607f17f72769cc1b # Parent ecf19726600a3218c10eb28dcfded16d2a18c301 clean up EQT feature patch. 1. Improves documentation in help and x265readthedocs

[x265] [PATCH] Edge Aware Quad Tree Establishment

2020-02-18 Thread srikanth . kurapati
# HG changeset patch # User Srikanth Kurapati # Date 1580280547 -19800 # Wed Jan 29 12:19:07 2020 +0530 # Node ID ecf19726600a3218c10eb28dcfded16d2a18c301 # Parent c2769ac5fa9d6776317e720d19f5f8b0eab4 Edge Aware Quad Tree Establishment. This patch does the following: 1. Terminates

Re: [x265] [PATCH] Edge Aware Quad Tree Establishment

2020-02-18 Thread Srikanth Kurapati
and then normalizing the values to between 0 to 1. It's difficult for user to think in terms of normalized variance. On Tue, Feb 18, 2020 at 3:17 PM Aruna Matheswaran < ar...@multicorewareinc.com> wrote: > > > On Fri, Feb 7, 2020 at 3:37 PM > wrote: > >> # HG changeset patch

[x265] [PATCH] Fix: Segmentation fault for hist-scenecut option in 16bpp builds

2020-02-12 Thread srikanth . kurapati
# HG changeset patch # User Srikanth Kurapati # Date 1580113966 -19800 # Mon Jan 27 14:02:46 2020 +0530 # Node ID 69c14085a001162da70cab32188b10c1d7258dd2 # Parent 30d303b38c7bd1733aedd01a3f738fb08ec1488c Fix: Segmentation fault for hist-scenecut option in 16bpp builds. This patch fixes

Re: [x265] [PATCH] Fix: Segmentation fault for hist-scenecut option in 16bpp builds

2020-02-12 Thread Srikanth Kurapati
PM Aruna Matheswaran < ar...@multicorewareinc.com> wrote: > > > On Wed, Feb 12, 2020 at 4:01 PM > wrote: > >> # HG changeset patch >> # User Srikanth Kurapati >> # Date 1580113966 -19800 >> # Mon Jan 27 14:02:46 2020 +0530 >> # Node ID 5

[x265] [PATCH] Fix: Segmentation fault for hist-scenecut option in 16bpp builds

2020-02-12 Thread srikanth . kurapati
# HG changeset patch # User Srikanth Kurapati # Date 1580113966 -19800 # Mon Jan 27 14:02:46 2020 +0530 # Node ID 5b4240c81ce34d2376bca0dad3f5aa6522db9008 # Parent 30d303b38c7bd1733aedd01a3f738fb08ec1488c Fix: Segmentation fault for hist-scenecut option in 16bpp builds. This patch fixes

Re: [x265] [PATCH] Fix: Segmentation fault for hist-scenecut option in 16bpp builds

2020-02-12 Thread Srikanth Kurapati
depth and not the source depth. On Wed, Feb 12, 2020 at 12:24 PM Aruna Matheswaran < ar...@multicorewareinc.com> wrote: > > > On Tue, Feb 11, 2020 at 12:01 PM > wrote: > >> # HG changeset patch >> # User Srikanth Kurapati >> # Date 1580113966 -19800 >> #

[x265] [PATCH] Fix: Segmentation fault for hist-scenecut option in 16bpp builds

2020-02-10 Thread srikanth . kurapati
# HG changeset patch # User Srikanth Kurapati # Date 1580113966 -19800 # Mon Jan 27 14:02:46 2020 +0530 # Node ID a542cabea72ac65f8e19da1bd2e5e75c871d3d42 # Parent 30d303b38c7bd1733aedd01a3f738fb08ec1488c Fix: Segmentation fault for hist-scenecut option in 16bpp builds. This patch fixes

Re: [x265] [PATCH] histscenecut: Fixes Segmentation fault for 16bpp build in Windows/Mac

2020-02-10 Thread Srikanth Kurapati
Yes. I have corrected the commit message. On Thu, Feb 6, 2020 at 9:42 AM Aruna Matheswaran wrote: > On Thu, Jan 30, 2020 at 10:57 AM > wrote: > >> # HG changeset patch >> # User Srikanth Kurapati >> # Date 1580113966 -19800 >> # Mon Jan 27

Re: [x265] [PATCH] Edge Aware Quad Tree Establishment

2020-02-10 Thread Srikanth Kurapati
Thank you. @Aruna Matheswaran please push the above patch to the repo. On Mon, Feb 10, 2020 at 3:00 PM Kavitha Sampath < kavi...@multicorewareinc.com> wrote: > Looks good to me. > > On Fri, Feb 7, 2020 at 3:37 PM > wrote: > >> # HG changeset patch >> #

[x265] [PATCH] Edge Aware Quad Tree Establishment

2020-02-07 Thread srikanth . kurapati
# HG changeset patch # User Srikanth Kurapati # Date 1580280547 -19800 # Wed Jan 29 12:19:07 2020 +0530 # Node ID 30d303b38c7bd1733aedd01a3f738fb08ec1488c # Parent fdbd4e4a2aff93bfc14b10efcd9e681a7ebae311 Edge Aware Quad Tree Establishment. This patch does the following: 1. Terminates

Re: [x265] [PATCH] Edge Aware Quad Tree Establishment

2020-02-07 Thread Srikanth Kurapati
On Tue, Feb 4, 2020 at 5:10 PM Srikanth Kurapati < srikanth.kurap...@multicorewareinc.com> wrote: > On Wed, Jan 29, 2020 at 12:20 PM > wrote: > >> # HG changeset patch >> # User Srikanth Kurapati >> # Date 1580280547 -19800 >> # Wed

Re: [x265] [PATCH] Edge Aware Quad Tree Establishment

2020-02-04 Thread Srikanth Kurapati
On Wed, Jan 29, 2020 at 12:20 PM wrote: > # HG changeset patch > # User Srikanth Kurapati > # Date 1580280547 -19800 > # Wed Jan 29 12:19:07 2020 +0530 > # Node ID e9c8c0089bddc9e9e47774b5fda1f4dff1fb45e4 > # Parent fdbd4e4a2aff93bfc14b10efcd9e681a7ebae311 >

Re: [x265] [PATCH] Edge Aware Quad Tree Establishment

2020-02-03 Thread Srikanth Kurapati
12:38 PM Srikanth Kurapati < > srikanth.kurap...@multicorewareinc.com> wrote: > >> [KS] Are we going to have the same default threshold for both flows - >> (a)histogram based scenecut =1 && aqmode=0 (b) histogram based scenecut =0 >> && aqmode=1 &g

[x265] [PATCH] histscenecut: Fixes Segmentation fault for 16bpp build in Windows/Mac

2020-01-29 Thread srikanth . kurapati
# HG changeset patch # User Srikanth Kurapati # Date 1580113966 -19800 # Mon Jan 27 14:02:46 2020 +0530 # Node ID 4da3cbc7346953a596e5b208be3607037b67307c # Parent 802600c8e5dcc1eff03725af6f399a72c09d24f6 histscenecut: Fixes Segmentation fault for 16bpp build in Windows/Mac. Adds

[x265] [PATCH] hist-scenecut: Fixes output change introduced by hist-scenecut in ultrafast mode

2020-01-29 Thread srikanth . kurapati
# HG changeset patch # User Srikanth Kurapati # Date 1579955883 -19800 # Sat Jan 25 18:08:03 2020 +0530 # Node ID 802600c8e5dcc1eff03725af6f399a72c09d24f6 # Parent acc5d16999e2faf6e75ecc1df9a01c1953ebaf8c hist-scenecut: Fixes output change introduced by hist-scenecut in ultrafast mode

Re: [x265] [PATCH] Edge Aware Quad Tree Establishment

2020-01-28 Thread Srikanth Kurapati
22, 2020 at 4:30 PM Kavitha Sampath < kavi...@multicorewareinc.com> wrote: > > > On Tue, Jan 21, 2020 at 11:32 AM > wrote: > >> # HG changeset patch >> # User Srikanth Kurapati >> # Date 1579584229 -19800 >> # Tue Jan 21 10:53:49 202

[x265] [PATCH] Edge Aware Quad Tree Establishment

2020-01-28 Thread srikanth . kurapati
# HG changeset patch # User Srikanth Kurapati # Date 1580280547 -19800 # Wed Jan 29 12:19:07 2020 +0530 # Node ID e9c8c0089bddc9e9e47774b5fda1f4dff1fb45e4 # Parent fdbd4e4a2aff93bfc14b10efcd9e681a7ebae311 Edge Aware Quad Tree Establishment. This patch does the following: 1. Terminates

Re: [x265] [PATCH] Edge Aware Quad Tree Establishment

2020-01-22 Thread Srikanth Kurapati
e > users won't want to use rskip at rd > 4? > > On Wed, Jan 22, 2020, 04:00 Kavitha Sampath > wrote: > >> >> >> On Tue, Jan 21, 2020 at 11:32 AM >> wrote: >> >>> # HG changeset patch >>> # User Srikanth Kurapati >>&

[x265] [PATCH] Edge Aware Quad Tree Establishment

2020-01-20 Thread srikanth . kurapati
# HG changeset patch # User Srikanth Kurapati # Date 1579584229 -19800 # Tue Jan 21 10:53:49 2020 +0530 # Node ID e0e0270ead4189a545821b00011c47d61e6b817a # Parent acc5d16999e2faf6e75ecc1df9a01c1953ebaf8c Edge Aware Quad Tree Establishment. This patch does the following: 1. Terminates

Re: [x265] [PATCH] Edge Aware Quad Tree Establishment

2020-01-20 Thread Srikanth Kurapati
of pelx and pely and fix this before sending the next updated patch. [Srikanth] Addressed. On Mon, Jan 20, 2020 at 1:44 PM Kavitha Sampath < kavi...@multicorewareinc.com> wrote: > > > On Mon, Jan 20, 2020 at 12:12 PM Srikanth Kurapati < > srikanth.kurap...@multicorewareinc.c

[x265] [PATCH] Edge Aware Quad Tree Establishment

2020-01-19 Thread srikanth . kurapati
# HG changeset patch # User Srikanth Kurapati # Date 1578927016 -19800 # Mon Jan 13 20:20:16 2020 +0530 # Node ID 696c14278f2ab6941dd1032321440c3d8be6f3fc # Parent 8e6db24c1517f6f160f0e7e62deba44fc2b69d88 Edge Aware Quad Tree Establishment. This patch does the following: 1. Terminates

Re: [x265] [PATCH] Edge Aware Quad Tree Establishment

2020-01-19 Thread Srikanth Kurapati
patches. Check comments below On Fri, Jan 10, 2020 at 5:46 PM wrote: > # HG changeset patch > # User Srikanth Kurapati > # Date 1578656713 -19800 > # Fri Jan 10 17:15:13 2020 +0530 > # Node ID 82a92c26b4429327c9038d822e02ad6c0de290d4 > # Parent 6b348d5b56d86ddfc3874d0f50f12

[x265] [PATCH] Edge Aware Quad Tree Establishment

2020-01-10 Thread srikanth . kurapati
# HG changeset patch # User Srikanth Kurapati # Date 1578656713 -19800 # Fri Jan 10 17:15:13 2020 +0530 # Node ID 82a92c26b4429327c9038d822e02ad6c0de290d4 # Parent 6b348d5b56d86ddfc3874d0f50f1283edab5fb4f Edge Aware Quad Tree Establishment. This patch does the following: 1. Terminates

Re: [x265] [PATCH] Edge Aware Quad Tree Establishment

2020-01-10 Thread Srikanth Kurapati
residual from inter2Nx2N. > Hence I am interested to know why this algorithm doesn't support rd 5/6. > [Srikanth] As per the SOW this deliverable is scoped to function similar to rskip mode 1. Definitely we can explore the same as a separate enhancement. > > >> # Main12 intraC

Re: [x265] [PATCH] Edge Aware Quad Tree Establishment

2020-01-07 Thread Srikanth Kurapati
Hi Kavitha, Please provide your feedback for the above patch. On Tue, Jan 7, 2020 at 8:16 AM wrote: > # HG changeset patch > # User Srikanth Kurapati > # Date 1577432829 -19800 > # Fri Dec 27 13:17:09 2019 +0530 > # Node ID 3d60a9a728b37f14cbb9cb2332a1aebf87e6

[x265] [PATCH] Edge Aware Quad Tree Establishment

2020-01-06 Thread srikanth . kurapati
# HG changeset patch # User Srikanth Kurapati # Date 1577432829 -19800 # Fri Dec 27 13:17:09 2019 +0530 # Node ID 3d60a9a728b37f14cbb9cb2332a1aebf87e66334 # Parent 19f6ed1659197aaa4bd78b69eb58139e879230d9 Edge Aware Quad Tree Establishment. This patch does the following: 1. Terminates

Re: [x265] [PATCH] Edge Aware Quad Tree Establishment

2020-01-06 Thread Srikanth Kurapati
Please ignore this email. I will resend the final one immediately. On Mon, Jan 6, 2020 at 4:02 PM wrote: > # HG changeset patch > # User Srikanth Kurapati > # Date 1577432829 -19800 > # Fri Dec 27 13:17:09 2019 +0530 > # Node ID 99c608bd88538ca77556fed672bc6302625d

[x265] [PATCH] Edge Aware Quad Tree Establishment

2020-01-06 Thread srikanth . kurapati
# HG changeset patch # User Srikanth Kurapati # Date 1577432829 -19800 # Fri Dec 27 13:17:09 2019 +0530 # Node ID 99c608bd88538ca77556fed672bc6302625dfdf0 # Parent 19f6ed1659197aaa4bd78b69eb58139e879230d9 Edge Aware Quad Tree Establishment. This patch does the following: 1. Terminates

Re: [x265] [PATCH] Edge Aware Quad Tree Establishment

2020-01-06 Thread Srikanth Kurapati
Please ignore this email. On Mon, Jan 6, 2020 at 12:44 PM wrote: > # HG changeset patch > # User Srikanth Kurapati > # Date 1577432829 -19800 > # Fri Dec 27 13:17:09 2019 +0530 > # Node ID 27d66318e16e7f522f2d01067629cd9f24c07f66 > # Parent 19f6ed1659197aaa4bd78b69eb581

  1   2   >