[FFmpeg-devel] [PATCH] added slicing yuv, rgb

2014-12-17 Thread Yayoi
--- libavfilter/allfilters.c | 2 +- libavfilter/vf_lut.c | 119 ++- 2 files changed, 88 insertions(+), 33 deletions(-) diff --git a/libavfilter/allfilters.c b/libavfilter/allfilters.c index adb86be..76341bd 100644 --- a/libavfilter/allfilters.c +

[FFmpeg-devel] [PATCH] avfilter/lut: reduce dereference in the inner loop

2014-12-18 Thread Yayoi
For rgb, with a 1080p source, 69 to 74fps on core i5(2 core, 1.8GHz), and 136 to 160 fps on an core i7(4770R, 3.2Ghz) Changed the yuv code for consistency, even though the performance increase is not as obvious as rgb --- libavfilter/vf_lut.c | 29 ++--- 1 file changed, 18

[FFmpeg-devel] [PATCH 1/4] avcodec/strdec: factor out HTML parsing code

2015-08-06 Thread Yayoi
This code will be used in SAMI decoder in a later commit. --- libavcodec/Makefile| 4 +- libavcodec/htmlsubtitles.c | 198 + libavcodec/htmlsubtitles.h | 29 +++ libavcodec/srtdec.c| 149 +- 4 files

[FFmpeg-devel] [PATCH 2/4] libavcodec/samidec: use ff_htmlmarkup_to_ass()

2015-08-06 Thread Yayoi
--- libavcodec/samidec.c| 59 + tests/ref/fate/sub-sami | 18 +++ 2 files changed, 44 insertions(+), 33 deletions(-) diff --git a/libavcodec/samidec.c b/libavcodec/samidec.c index 47850e2..41826a7 100644 --- a/libavcodec/samidec.c ++

[FFmpeg-devel] [PATCH 3/4] libavformat/samidec: fix tag close

2015-08-06 Thread Yayoi
--- libavformat/samidec.c | 8 +++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/libavformat/samidec.c b/libavformat/samidec.c index 948e1ed..bc9b745 100644 --- a/libavformat/samidec.c +++ b/libavformat/samidec.c @@ -68,11 +68,17 @@ static int sami_read_header(AVFormatContext *

[FFmpeg-devel] [PATCH 4/4] fate reference for samidec

2015-08-06 Thread Yayoi
--- tests/fate/subtitles.mak | 3 ++ tests/ref/fate/sub-sami2 | 91 2 files changed, 94 insertions(+) create mode 100644 tests/ref/fate/sub-sami2 diff --git a/tests/fate/subtitles.mak b/tests/fate/subtitles.mak index d8b2034..0a6c33d 100644 --- a

[FFmpeg-devel] [PATCH 2/4] avcodec/samidec: use ff_htmlmarkup_to_ass()

2015-08-07 Thread Yayoi
--- libavcodec/samidec.c| 59 + tests/ref/fate/sub-sami | 18 +++ 2 files changed, 44 insertions(+), 33 deletions(-) diff --git a/libavcodec/samidec.c b/libavcodec/samidec.c index 47850e2..41826a7 100644 --- a/libavcodec/samidec.c ++

[FFmpeg-devel] [PATCH 1/4] avcodec/strdec: factor out HTML parsing code

2015-08-07 Thread Yayoi
This code will be used in SAMI decoder in a later commit. --- libavcodec/Makefile| 4 +- libavcodec/htmlsubtitles.c | 198 + libavcodec/htmlsubtitles.h | 29 +++ libavcodec/srtdec.c| 149 +- 4 files

[FFmpeg-devel] [PATCH 3/4] avformat/samidec: fix tag close

2015-08-07 Thread Yayoi
--- libavformat/samidec.c | 8 +++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/libavformat/samidec.c b/libavformat/samidec.c index 948e1ed..bc9b745 100644 --- a/libavformat/samidec.c +++ b/libavformat/samidec.c @@ -68,11 +68,17 @@ static int sami_read_header(AVFormatContext *

[FFmpeg-devel] [PATCH 4/4] fate reference for samidec

2015-08-07 Thread Yayoi
--- tests/fate/subtitles.mak | 3 ++ tests/ref/fate/sub-sami2 | 91 2 files changed, 94 insertions(+) create mode 100644 tests/ref/fate/sub-sami2 diff --git a/tests/fate/subtitles.mak b/tests/fate/subtitles.mak index d8b2034..0a6c33d 100644 --- a

[FFmpeg-devel] [PATCH 1/4] avcodec/srtdec: factor out HTML parsing code

2015-08-09 Thread Yayoi
This code will be used in SAMI decoder in a later commit. --- libavcodec/Makefile| 2 +- libavcodec/htmlsubtitles.c | 201 + libavcodec/htmlsubtitles.h | 29 +++ libavcodec/srtdec.c| 149 + 4 files c

[FFmpeg-devel] [PATCH 2/4] avcodec/samidec: use ff_htmlmarkup_to_ass()

2015-08-09 Thread Yayoi
--- libavcodec/Makefile | 2 +- libavcodec/samidec.c| 71 - tests/ref/fate/sub-sami | 18 ++--- 3 files changed, 56 insertions(+), 35 deletions(-) diff --git a/libavcodec/Makefile b/libavcodec/Makefile index 4ca824b..8201aa0 100644

[FFmpeg-devel] [PATCH 3/4] avformat/samidec:do not include trailing sami

2015-08-09 Thread Yayoi
footer in the last packet --- libavformat/samidec.c | 8 +++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/libavformat/samidec.c b/libavformat/samidec.c index 948e1ed..bc9b745 100644 --- a/libavformat/samidec.c +++ b/libavformat/samidec.c @@ -68,11 +68,17 @@ static int sami_rea

[FFmpeg-devel] [PATCH 4/4] fate/subtitles: add a new test for SAMI demuxer

2015-08-09 Thread Yayoi
and decoder --- tests/fate/subtitles.mak | 3 ++ tests/ref/fate/sub-sami2 | 91 2 files changed, 94 insertions(+) create mode 100644 tests/ref/fate/sub-sami2 diff --git a/tests/fate/subtitles.mak b/tests/fate/subtitles.mak index d8b2034..f5270ea

[FFmpeg-devel] [PATCH 2/5] avcodec/samidec: use ff_htmlmarkup_to_ass()

2015-08-27 Thread Yayoi
--- libavcodec/Makefile | 2 +- libavcodec/samidec.c| 35 +-- tests/ref/fate/sub-sami | 18 +- 3 files changed, 31 insertions(+), 24 deletions(-) diff --git a/libavcodec/Makefile b/libavcodec/Makefile index d1ffb12..1045d7a 100644 --- a/lib

[FFmpeg-devel] [PATCH 3/5] libavcodec/htmlsubtitles:Add parsing for sami

2015-08-27 Thread Yayoi
--- libavcodec/htmlsubtitles.c | 9 - 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/libavcodec/htmlsubtitles.c b/libavcodec/htmlsubtitles.c index a138955..c1324d6 100644 --- a/libavcodec/htmlsubtitles.c +++ b/libavcodec/htmlsubtitles.c @@ -54,7 +54,7 @@ static void rstrip_sp

[FFmpeg-devel] [PATCH 5/5] fate/subtitles: add a new test for SAMI demuxer

2015-08-27 Thread Yayoi
and decoder --- tests/fate/subtitles.mak | 3 ++ tests/ref/fate/sub-sami2 | 91 2 files changed, 94 insertions(+) create mode 100644 tests/ref/fate/sub-sami2 diff --git a/tests/fate/subtitles.mak b/tests/fate/subtitles.mak index d8b2034..f5270ea

[FFmpeg-devel] [PATCH 1/5] avcodec/srtdec: factor out HTML parsing code

2015-08-27 Thread Yayoi
This code will be used in SAMI decoder in a later commit. --- libavcodec/Makefile| 2 +- libavcodec/htmlsubtitles.c | 177 + libavcodec/htmlsubtitles.h | 29 libavcodec/srtdec.c| 149 +- 4 f

[FFmpeg-devel] [PATCH 4/5] avformat/samidec:do not include trailing sami

2015-08-27 Thread Yayoi
footer in the last packet --- libavformat/samidec.c | 8 +++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/libavformat/samidec.c b/libavformat/samidec.c index 948e1ed..bc9b745 100644 --- a/libavformat/samidec.c +++ b/libavformat/samidec.c @@ -68,11 +68,17 @@ static int sami_rea

[FFmpeg-devel] [PATCH 1/4] avcodec/srtdec: factor out HTML parsing code

2015-08-28 Thread Yayoi
This code will be used in SAMI decoder in a later commit. --- libavcodec/Makefile| 2 +- libavcodec/htmlsubtitles.c | 177 + libavcodec/htmlsubtitles.h | 29 libavcodec/srtdec.c| 149 +- 4 f

[FFmpeg-devel] [PATCH 2/4] avcodec/samidec: use ff_htmlmarkup_to_ass()

2015-08-28 Thread Yayoi
--- libavcodec/Makefile | 2 +- libavcodec/samidec.c| 38 ++ tests/ref/fate/sub-sami | 18 +- 3 files changed, 36 insertions(+), 22 deletions(-) diff --git a/libavcodec/Makefile b/libavcodec/Makefile index d1ffb12..1045d7a 100644 --- a/

[FFmpeg-devel] [PATCH 3/4] avformat/samidec:do not include trailing sami

2015-08-28 Thread Yayoi
footer in the last packet --- libavformat/samidec.c | 8 +++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/libavformat/samidec.c b/libavformat/samidec.c index 948e1ed..bc9b745 100644 --- a/libavformat/samidec.c +++ b/libavformat/samidec.c @@ -68,11 +68,17 @@ static int sami_rea

[FFmpeg-devel] [PATCH 4/4] fate/subtitles: add a new test for SAMI demuxer

2015-08-28 Thread Yayoi
and decoder --- tests/fate/subtitles.mak | 3 ++ tests/ref/fate/sub-sami2 | 91 2 files changed, 94 insertions(+) create mode 100644 tests/ref/fate/sub-sami2 diff --git a/tests/fate/subtitles.mak b/tests/fate/subtitles.mak index d8b2034..f5270ea

[FFmpeg-devel] [PATCH 1/4] avcodec/srtdec: factor out HTML parsing code

2015-08-30 Thread Yayoi
This code will be used in SAMI decoder in a later commit. --- libavcodec/Makefile| 2 +- libavcodec/htmlsubtitles.c | 177 + libavcodec/htmlsubtitles.h | 29 libavcodec/srtdec.c| 149 +- 4 f

[FFmpeg-devel] [PATCH 2/4] avcodec/samidec: use ff_htmlmarkup_to_ass()

2015-08-30 Thread Yayoi
--- libavcodec/Makefile | 2 +- libavcodec/samidec.c| 45 - tests/ref/fate/sub-sami | 18 +- 3 files changed, 38 insertions(+), 27 deletions(-) diff --git a/libavcodec/Makefile b/libavcodec/Makefile index d1ffb12..1045d7a 100644

[FFmpeg-devel] [PATCH 3/4] avformat/samidec:do not include trailing sami

2015-08-30 Thread Yayoi
footer in the last packet --- libavformat/samidec.c | 8 +++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/libavformat/samidec.c b/libavformat/samidec.c index 948e1ed..bc9b745 100644 --- a/libavformat/samidec.c +++ b/libavformat/samidec.c @@ -68,11 +68,17 @@ static int sami_rea

[FFmpeg-devel] [PATCH 4/4] fate/subtitles: add a new test for SAMI demuxer

2015-08-30 Thread Yayoi
and decoder --- tests/fate/subtitles.mak | 3 ++ tests/ref/fate/sub-sami2 | 91 2 files changed, 94 insertions(+) create mode 100644 tests/ref/fate/sub-sami2 diff --git a/tests/fate/subtitles.mak b/tests/fate/subtitles.mak index d8b2034..f5270ea

[FFmpeg-devel] [PATCH] avfilter/colormatrix:add slice threading

2015-03-09 Thread Yayoi
--- libavfilter/vf_colormatrix.c | 146 --- 1 file changed, 95 insertions(+), 51 deletions(-) diff --git a/libavfilter/vf_colormatrix.c b/libavfilter/vf_colormatrix.c index daba16e..8514684 100644 --- a/libavfilter/vf_colormatrix.c +++ b/libavfilter/vf_colo

[FFmpeg-devel] [PATCH] avfilter/colormatrix:add slice threading

2015-03-09 Thread Yayoi
--- fixed the issue and cleaned up the code a bit --- libavfilter/vf_colormatrix.c | 146 +++ 1 file changed, 92 insertions(+), 54 deletions(-) diff --git a/libavfilter/vf_colormatrix.c b/libavfilter/vf_colormatrix.c index daba16e..d0839cc 100644 --- a/li

[FFmpeg-devel] [PATCH] avfilter/colormatrix:add slice threading

2015-03-09 Thread Yayoi
--- separate a struct variable declaraion and assignment statements. --- libavfilter/vf_colormatrix.c | 146 --- 1 file changed, 94 insertions(+), 52 deletions(-) diff --git a/libavfilter/vf_colormatrix.c b/libavfilter/vf_colormatrix.c index daba16e..f5835

Re: [FFmpeg-devel] Outreachy 2016 december

2016-07-23 Thread Yayoi Ukai
guidance with. If there are any documentation available that I am not aware of, I would be happy to review it. I look forward to working with each and everyone of you on FFmpeg! Cheers, Yayoi > > > > They need to create the wiki page(s) for this round, and make sure > > t

Re: [FFmpeg-devel] [PATCH 4/4] fate reference for samidec

2015-08-06 Thread Yayoi Ukai
The (attached) file is a sample for this reference. Thank you! Yayoi On Thu, Aug 6, 2015 at 11:47 PM, Yayoi wrote: > --- > tests/fate/subtitles.mak | 3 ++ > tests/ref/fate/sub-sami2 | 91 > > 2 files changed, 94 insertions(+)

Re: [FFmpeg-devel] [PATCH 4/4] fate reference for samidec

2015-08-07 Thread Yayoi Ukai
have a super wonderful day!! Yayoi On Fri, Aug 7, 2015 at 11:03 PM, Yayoi wrote: > --- > tests/fate/subtitles.mak | 3 ++ > tests/ref/fate/sub-sami2 | 91 > > 2 files changed, 94 insertions(+) > create mode 100644 tests/ref/

Re: [FFmpeg-devel] [PATCH 1/4] avcodec/strdec: factor out HTML parsing code

2015-08-08 Thread Yayoi Ukai
On Sat, Aug 8, 2015 at 8:17 AM, Clément Bœsch wrote: >> Subject: Re: [FFmpeg-devel] [PATCH 1/4] avcodec/strdec: factor out HTML >> parsing code > > typo in the commit message: srtdec > > On Fri, Aug 07, 2015 at 11:03:28PM -0700, Yayoi wrote: >> This code will be u

Re: [FFmpeg-devel] [PATCH 2/4] avcodec/samidec: use ff_htmlmarkup_to_ass()

2015-08-08 Thread Yayoi Ukai
On Sat, Aug 8, 2015 at 8:23 AM, Clément Bœsch wrote: > On Fri, Aug 07, 2015 at 11:03:29PM -0700, Yayoi wrote: >> --- >> libavcodec/samidec.c| 59 >> + >> tests/ref/fate/sub-sami | 18 +++ >> 2 fi

Re: [FFmpeg-devel] [PATCH 4/4] fate/subtitles: add a new test for SAMI demuxer

2015-08-09 Thread Yayoi Ukai
And sample with a new name. On Sun, Aug 9, 2015 at 9:39 PM, Yayoi wrote: > and decoder > --- > tests/fate/subtitles.mak | 3 ++ > tests/ref/fate/sub-sami2 | 91 > > 2 files changed, 94 insertions(+) > create mode 1006

Re: [FFmpeg-devel] [PATCH 1/4] avcodec/strdec: factor out HTML parsing code

2015-08-27 Thread Yayoi Ukai
On Sat, Aug 15, 2015 at 11:08 AM, Clément Bœsch wrote: > On Sat, Aug 08, 2015 at 12:52:04PM -0700, Yayoi Ukai wrote: > [...] >> >> -while (dst->len >= 2 && !strncmp(&dst->str[dst->len - 2], "\\N", 2)) >> &g

Re: [FFmpeg-devel] [PATCH 2/4] avcodec/samidec: use ff_htmlmarkup_to_ass()

2015-08-27 Thread Yayoi Ukai
Thank you for the suggestion.. It took me a while to get it but I think it looks much better now. Please let me know what you think! Cheers, On Sat, Aug 15, 2015 at 11:24 AM, Clément Bœsch wrote: > On Sat, Aug 08, 2015 at 09:24:03PM -0700, Yayoi Ukai wrote: >> On Sat, Aug 8, 2015 a

Re: [FFmpeg-devel] [PATCH 1/4] avcodec/strdec: factor out HTML parsing code

2015-08-28 Thread Yayoi Ukai
>> >> rstrip_spaces_buf(dst); >> av_bprintf(dst, "\\N"); >> line_start = 1; >> @@ -90,6 +105,15 @@ void ff_htmlmarkup_to_ass(AVCodecContext *avctx, >> AVBPrint *dst, const char *in) >> av_bprint_chars(dst, *in, 1); >> break; >>

Re: [FFmpeg-devel] Outreach Program For Women

2015-09-01 Thread Yayoi Ukai
la) so you can just start I think. Also actually I heard that selection process is pretty competitive. (They have a tons of qualified candidates by the time they take a pick) So earlier is better I think. I hope it goes well and good luck~. Cheers, Yayoi On Tue, Sep 1, 2015 at 12:04 AM, Imacu

Re: [FFmpeg-devel] [Outreachy][nyanyanya] Summary of this summer

2015-09-01 Thread Yayoi Ukai
Hi Ludmila, Congrats!! I am super super happy you that your internship was successful! And congrats for being selected for the intern too!!! I also like your blog! It's great. I think you are really smart!! Cheers, Yayoi On Mon, Aug 31, 2015 at 12:17 PM, Ludmila Glinskih wrote: >

Re: [FFmpeg-devel] IRC meeting on Saturday 2015-09-12, UTC 15:00

2015-09-07 Thread Yayoi Ukai
rocess >> 3. VDD15 >> 4. Any other business > > 5. Outreachy funding, we again need funding for the next round (winter 2015) > i guess this doesnt need "discussion" but we need to find a sponsor or > use our limited funds I am happ

Re: [FFmpeg-devel] IRC meeting on Saturday 2015-09-12, UTC 15:00

2015-09-08 Thread Yayoi Ukai
On Sep 8, 2015 3:21 AM, "Michael Niedermayer" wrote: > > On Mon, Sep 07, 2015 at 09:25:20PM -0700, Yayoi Ukai wrote: > > On Mon, Sep 7, 2015 at 4:41 AM, Michael Niedermayer wrote: > > > On Mon, Sep 07, 2015 at 11:37:47AM +0200, Stefano Sabatini wrote: > > &

[FFmpeg-devel] Outreachy

2015-09-08 Thread Yayoi Ukai
Thank you, Yayoi ___ ffmpeg-devel mailing list ffmpeg-devel@ffmpeg.org http://ffmpeg.org/mailman/listinfo/ffmpeg-devel

Re: [FFmpeg-devel] Outreachy

2015-09-09 Thread Yayoi Ukai
Hi, The below is the draft of the letter. Please let me know, if you have any opinion about it. Yayoi Dear (Name of the candidate sponsor organization), FFmpeg(https://www.ffmpeg.org) is the leading multimedia framework, able to decode, encode, transcode, mux, demux, stream, filter, and play

Re: [FFmpeg-devel] IRC meeting on Saturday 2015-09-12, UTC 15:00

2015-09-11 Thread Yayoi Ukai
On Thu, Sep 10, 2015 at 8:37 PM, Ganesh Ajjanagadde wrote: > On Mon, Sep 7, 2015 at 5:37 AM, Stefano Sabatini wrote: >> Hi, >> >> I propose to have an official IRC meeting on the next Saturday, and I >> propose the tentative time of 15:00 UTC, but feel free to propose a >> different time if this

Re: [FFmpeg-devel] IRC meeting on Saturday 2015-09-12, UTC 15:00

2015-09-12 Thread Yayoi Ukai
On Thu, Sep 10, 2015 at 10:46 AM, Michael Niedermayer wrote: > On Mon, Sep 07, 2015 at 11:37:47AM +0200, Stefano Sabatini wrote: >> Hi, >> >> I propose to have an official IRC meeting on the next Saturday, and I >> propose the tentative time of 15:00 UTC, but feel free to propose a >> different ti

Re: [FFmpeg-devel] IRC meeting on Saturday 2015-09-12, UTC 15:00

2015-09-12 Thread Yayoi Ukai
FYI: Here is my experience with Python.org Step 1: If it the decision is not so important (simple patch etc.) and if 3 reviewers say yes, it will be merged. Also, it seems there are no maintainers for specific parts of the code, but instead they have "reviewers" and only reviewers can review the p

[FFmpeg-devel] IRC meeting summary for Outeachy Fundraising (Item No.5)

2015-09-13 Thread Yayoi Ukai
port intern but prefer to raise funds 3. Micheal will be a mentor (tentative). Developers will discuss the idea of the project and will be determined. (possibly more mentor candidates and Mentors need to commit 5 hours a week during the internship period.) 4. Lou will review the email template that Y

Re: [FFmpeg-devel] IRC meeting summary for Outeachy Fundraising (Item No.5)

2015-09-14 Thread Yayoi Ukai
on IRC meeting. Also, please let me know if I missed something else or any comments. Cheers, Yayoi On Sun, Sep 13, 2015 at 10:33 PM, Ngassa Finjap wrote: > Hi Yayoi, > > Thank you for writing a summary of the IRC Meeting which took place > yesterday regarding the upcoming Outre

Re: [FFmpeg-devel] IRC meeting summary for Outeachy Fundraising (Item No.5)

2015-09-14 Thread Yayoi Ukai
Hi Ngassa, On Sun, Sep 13, 2015 at 10:33 PM, Ngassa Finjap wrote: > Hi Yayoi, > > Thank you for writing a summary of the IRC Meeting which took place > yesterday regarding the upcoming Outreachy program. Yaaay! ^_^ [ Sadness > levels drop. ] I am glad to hear that. > > IM

Re: [FFmpeg-devel] Voting committee

2015-09-15 Thread Yayoi Ukai
that I can't follow you completely your logic! but it definitely inspire me to write more. PS. Again, please please please consider to be a mentor if I actually stay being a volunteer. Cheers, Yayoi > > Regards, > > -- > Nicolas George > > ___

Re: [FFmpeg-devel] Voting committee

2015-09-20 Thread Yayoi Ukai
On Fri, Sep 18, 2015 at 1:58 AM, wm4 wrote: > On 16.09.2015 07:32, Yayoi Ukai wrote: > >> I also thought that it was wrong that how some of the FFmpeg developer >> treated/regarded this Outreachy >> organization. For example, it seemed that Outreachy was regarded more &

Re: [FFmpeg-devel] Voting committee

2015-09-20 Thread Yayoi Ukai
On Wed, Sep 16, 2015 at 7:59 AM, Nicolas George wrote: > Le nonidi 29 fructidor, an CCXXIII, Yayoi Ukai a écrit : >> > Thanks. You are right, this was imprecise. I meant linear combination with >> > total coefficients one; barycenter in other words. For example: 10 commits