[FFmpeg-devel] [PATCH 1/3] web/style.less: Styles for heading anchors

2014-12-03 Thread Timothy Gu
Signed-off-by: Timothy Gu timothyg...@gmail.com --- generate-doc.sh | 1 + src/less/style.less | 12 2 files changed, 13 insertions(+) diff --git a/generate-doc.sh b/generate-doc.sh index f953a9a..d8d01d3 100755 --- a/generate-doc.sh +++ b/generate-doc.sh @@ -30,6 +30,7

[FFmpeg-devel] [PATCH 0/3] doc: Add separate buttons for anchors

2014-12-03 Thread Timothy Gu
://ffmpeg.org/. Timothy Gu (3): web/style.less: Styles for heading anchors doc: Do not use the headings as links to TOC anchors doc: html: Use native viewport ffmpeg.git: doc/t2h.pm | 105 +++-- 1 file changed, 103 insertions(+), 2 deletions

[FFmpeg-devel] [PATCH 2/3] doc: Do not use the headings as links to TOC anchors

2014-12-03 Thread Timothy Gu
Instead, use FontAwesome icons (if configured to be this way) or separate text. Signed-off-by: Timothy Gu timothyg...@gmail.com --- doc/t2h.pm | 104 +++-- 1 file changed, 102 insertions(+), 2 deletions(-) diff --git a/doc/t2h.pm b/doc

[FFmpeg-devel] [PATCH 3/3] doc: html: Use native viewport

2014-12-03 Thread Timothy Gu
Fixes displaying docs on small-screen devices. Signed-off-by: Timothy Gu timothyg...@gmail.com --- doc/t2h.pm | 1 + 1 file changed, 1 insertion(+) diff --git a/doc/t2h.pm b/doc/t2h.pm index 7f771f9..ca77842 100644 --- a/doc/t2h.pm +++ b/doc/t2h.pm @@ -169,6 +169,7 @@ EOT my $head2

[FFmpeg-devel] [PATCH 4/4] style: Update from ffmpeg-web

2014-12-03 Thread Timothy Gu
Signed-off-by: Timothy Gu timothyg...@gmail.com --- Forgot this one -- doc/style.min.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/style.min.css b/doc/style.min.css index 6843fda..e146be8 100644 --- a/doc/style.min.css +++ b/doc/style.min.css @@ -20,4 +20,4

Re: [FFmpeg-devel] [PATCH] web/legal: move Legal Threats to bottom of page

2014-12-02 Thread Timothy Gu
On Tue, Dec 2, 2014 at 3:53 PM, Lou Logan l...@lrcd.com wrote: This places Legal Threats under all of the more useful stuff. Signed-off-by: Lou Logan l...@lrcd.com --- src/legal | 23 +++ 1 file changed, 11 insertions(+), 12 deletions(-) OK. [...] Timothy

Re: [FFmpeg-devel] Hello everyone, i wonder if there is a plan to port ffmpeg to ARMv8 aarch32 platform?

2014-11-30 Thread Timothy Gu
Hi, On Sunday, November 30, 2014, Xiong Tang tangx5...@gmail.com wrote: I tried compiling ffmpeg on armv8 aarch64 platform , and it's ok. But when compiling on aarch32, compiling error occured. It seems some instructions in assembly files are not supported.Is there any plan to add aarch32

Re: [FFmpeg-devel] [PATCH]Rename sync() in liabvformat

2014-11-25 Thread Timothy Gu
On Tuesday, November 25, 2014, Carl Eugen Hoyos ceho...@ag.or.at wrote: Hi! Compilation for Android fails on fate because sync() in unistd.h interferes with sync() in lxfdec.c Please comment, Carl Eugen No patch was attached. Timothy ___

Re: [FFmpeg-devel] [PATCH 1/4] web/style: Only add bottom border when requested to th's in tbody

2014-11-24 Thread Timothy Gu
On Saturday, November 22, 2014, Timothy Gu timothyg...@gmail.com wrote: When the th is a row heading, the border looks as ugly as heck. Add a special case for th in tbody as a long heading. Signed-off-by: Timothy Gu timothyg...@gmail.com javascript:; --- This does not have any difference

[FFmpeg-devel] [PATCH 1/4] web/style: Only add bottom border when requested to th's in tbody

2014-11-22 Thread Timothy Gu
When the th is a row heading, the border looks as ugly as heck. Add a special case for th in tbody as a long heading. Signed-off-by: Timothy Gu timothyg...@gmail.com --- This does not have any difference in the website right now, but there will be in the new fateserver. --- src/download

[FFmpeg-devel] [PATCH 2/4] web/style: Remove ugly white border around tables on mobile devices

2014-11-22 Thread Timothy Gu
Signed-off-by: Timothy Gu timothyg...@gmail.com --- See http://imgur.com/qsnnjAi --- src/less/style.less | 4 1 file changed, 4 insertions(+) diff --git a/src/less/style.less b/src/less/style.less index 83212a4..378a972 100644 --- a/src/less/style.less +++ b/src/less/style.less @@ -327,6

[FFmpeg-devel] [PATCH 3/4] web/download: Make snapshot and browse buttons

2014-11-22 Thread Timothy Gu
Signed-off-by: Timothy Gu timothyg...@gmail.com --- See end results at http://imgur.com/GtLoaFe,PF2DeNy (both desktop and mobile) --- src/download | 57 ++--- 1 file changed, 38 insertions(+), 19 deletions(-) diff --git a/src/download b/src

[FFmpeg-devel] [PATCH 4/4] web/download: Fix indentation

2014-11-22 Thread Timothy Gu
Signed-off-by: Timothy Gu timothyg...@gmail.com --- src/download | 86 ++-- 1 file changed, 43 insertions(+), 43 deletions(-) diff --git a/src/download b/src/download index 4af35a5..f3f9ce3 100644 --- a/src/download +++ b/src/download

Re: [FFmpeg-devel] [PATCH] web/style.less: Separate out .table-bordered from .table

2014-11-18 Thread Timothy Gu
On Tue, Nov 18, 2014 at 2:20 AM, Michael Niedermayer michae...@gmx.at wrote: On Sat, Nov 15, 2014 at 09:23:39PM -0800, Timothy Gu wrote: The only instance of .table in the web source is the download page for the Git repos. I did not change that page because an unbordered table

Re: [FFmpeg-devel] [PATCH] web/style.less: Separate out .table-bordered from .table

2014-11-18 Thread Timothy Gu
On Tue, Nov 18, 2014 at 10:51 AM, Timothy Gu timothyg...@gmail.com wrote: On Tue, Nov 18, 2014 at 2:20 AM, Michael Niedermayer michae...@gmx.at wrote: On Sat, Nov 15, 2014 at 09:23:39PM -0800, Timothy Gu wrote: The only instance of .table in the web source is the download page for the Git

Re: [FFmpeg-devel] use openh264 in ffmpeg

2014-11-17 Thread Timothy Gu
On Mon, Nov 17, 2014 at 1:18 AM, 王山而 she...@live.cn wrote: hi I want to use openh264 in ffmpeg, how should I do this? please give me some help. thank you. Why? FFmpeg has a native H.264 decoder and I am fairly sure x264 still performs better than OpenH264. Timothy

[FFmpeg-devel] [PATCH 1/3] web: Remove all comments in the cleaned CSS

2014-11-15 Thread Timothy Gu
http://ffmpeg.org/css/style.min.css and the copy in ffmpeg/doc are both generated using this option. Signed-off-by: Timothy Gu timothyg...@gmail.com --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index f13a36f..506a17f 100644 --- a/Makefile

[FFmpeg-devel] [PATCH 3/3] web/download.js: Detab

2014-11-15 Thread Timothy Gu
Also fix the indentation of a line. Signed-off-by: Timothy Gu timothyg...@gmail.com --- htdocs/js/download.js | 24 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/htdocs/js/download.js b/htdocs/js/download.js index b4807b5..30e26a2 100644 --- a/htdocs/js

Re: [FFmpeg-devel] [PATCH 4/4] web/style.less: Separate out .table-bordered from .table

2014-11-14 Thread Timothy Gu
On Thursday, November 6, 2014, Timothy Gu timothyg...@gmail.com wrote: The only instance of .table in the web source is the download page for the Git repos. I did not change that page because an unbordered table there is prettier IMO. I retained the .table-bordered style in case anyone want

Re: [FFmpeg-devel] [PATCH] lavd/avfoundation: Introduce device alias 'none'.

2014-11-13 Thread Timothy Gu
On Thu, Nov 13, 2014 at 7:25 AM, Thilo Borgmann thilo.borgm...@mail.de wrote: Hi, this allows to record audio or video only and prevents to find a usable device in any case. This change in behaviour requires a version bump? Yes, minor bump. Also a RELEASE_NOTES and Changelog entry would be

Re: [FFmpeg-devel] [PATCH] lavf/tcp: apply minor fixes to documentation

2014-11-12 Thread Timothy Gu
On Wed, Nov 12, 2014 at 7:14 AM, Stefano Sabatini stefa...@gmail.com wrote: In particular, add an Examples section and correct the unit of the listen_timeout option value, from microseconds to milliseconds. This is a huge mistake, and therefore needs to be backported to release branches as

Re: [FFmpeg-devel] [PATCH] Fixes for the Icecast protocol

2014-11-10 Thread Timothy Gu
Hi, On Monday, November 10, 2014, epira...@gmail.com wrote: From: ePirat epira...@gmail.com javascript:; Real name please. Send 100-continue header so we detect errors before sending data Use a default content-type (content-type is required since Icecast 2.4.1) These are two unrelated

Re: [FFmpeg-devel] [PATCH 1/3] allow tabs in *.mak, they are part of the makefile syntax

2014-11-10 Thread Timothy Gu
On Monday, November 10, 2014, Michael Niedermayer michae...@gmx.at wrote: Signed-off-by: Michael Niedermayer michae...@gmx.at javascript:; --- update |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) LGTM Timothy ___ ffmpeg-devel mailing

[FFmpeg-devel] [PATCH 2/3] remove redundant explicit file.mak cases from the tab test

2014-11-10 Thread Timothy Gu
On Monday, November 10, 2014, Michael Niedermayer michae...@gmx.at javascript:_e(%7B%7D,'cvml','michae...@gmx.at'); wrote: --- update |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) LGTM if tested. Timothy ___ ffmpeg-devel mailing list

Re: [FFmpeg-devel] [PATCH 3/3] allow fate references to lack the final newline

2014-11-10 Thread Timothy Gu
On Monday, November 10, 2014, Michael Niedermayer michae...@gmx.at wrote: From: Lukasz Marek lukasz.m.lu...@gmail.com javascript:; --- update |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) LGTM if tested. Timothy ___ ffmpeg-devel

Re: [FFmpeg-devel] [PATCH 3/4] web/style.less: colors: Reindent and use more obvious functions

2014-11-10 Thread Timothy Gu
On Thu, Nov 6, 2014 at 6:55 PM, Timothy Gu timothyg...@gmail.com wrote: Signed-off-by: Timothy Gu timothyg...@gmail.com --- I feel like using hsl() in this case is clearer that the color is plain gray. Bikeshedding welcome. --- src/less/style.less | 31 +++ 1

[FFmpeg-devel] Mysterious `yuv444p` etc. tests in fate

2014-11-09 Thread Timothy Gu
Hi all, While hacking my Node.js fateserver I found out that there are some odd tests called `yuv444p` and `yuyv422`. Upon further inspection one can see that the tests are actually something else: http://fate.ffmpeg.org/report.cgi?time=20141110002508slot=arm7-cubox-gcc4.1 In this case the

[FFmpeg-devel] [WEB] [PATCH 2/4] web/style.less: Remove commented cruft

2014-11-06 Thread Timothy Gu
Signed-off-by: Timothy Gu timothyg...@gmail.com --- If someone would like to clarify this with a comment, it would be very helpful and I would happily drop this patch. --- src/less/style.less | 7 --- 1 file changed, 7 deletions(-) diff --git a/src/less/style.less b/src/less/style.less index

[FFmpeg-devel] [WEB] [PATCH 1/4] web/style.less: detab

2014-11-06 Thread Timothy Gu
Signed-off-by: Timothy Gu timothyg...@gmail.com --- Really don't know how it got committed in the first place. --- src/less/style.less | 352 ++-- 1 file changed, 176 insertions(+), 176 deletions(-) diff --git a/src/less/style.less b/src/less

[FFmpeg-devel] [PATCH 3/4] web/style.less: colors: Reindent and use more obvious functions

2014-11-06 Thread Timothy Gu
Signed-off-by: Timothy Gu timothyg...@gmail.com --- I feel like using hsl() in this case is clearer that the color is plain gray. Bikeshedding welcome. --- src/less/style.less | 31 +++ 1 file changed, 19 insertions(+), 12 deletions(-) diff --git a/src/less/style.less

[FFmpeg-devel] [PATCH 4/4] web/style.less: Separate out .table-bordered from .table

2014-11-06 Thread Timothy Gu
The only instance of .table in the web source is the download page for the Git repos. I did not change that page because an unbordered table there is prettier IMO. I retained the .table-bordered style in case anyone want to use it in the future. Signed-off-by: Timothy Gu timothyg...@gmail.com

Re: [FFmpeg-devel] [PATCH] doc: clarify -frames options behavior

2014-11-04 Thread Timothy Gu
On Tue, Nov 4, 2014 at 11:29 AM, Lou Logan l...@lrcd.com wrote: Replace frames to record with frames to output. The to record makes it seem like an input option, or that it would capture the frames insead of outputting them. Signed-off-by: Lou Logan l...@lrcd.com --- doc/ffmpeg.texi | 6

Re: [FFmpeg-devel] [PATCH] avformat/mpegts: add scan_all_pmts option

2014-11-03 Thread Timothy Gu
On Nov 3, 2014 4:59 PM, Michael Niedermayer michae...@gmx.at wrote: This allows selecting if the demuxer should consider all streams to be found after the first PMT and add further streams during decoding or if it rather should scan all that are within the analyze-duration and other limits

Re: [FFmpeg-devel] [PATCH] lavfi: add xbr filter

2014-11-02 Thread Timothy Gu
On Sunday, November 2, 2014, Stefano Sabatini stefa...@gmail.com wrote: On date Sunday 2014-11-02 13:28:05 +0100, Michael Niedermayer encoded: On Sun, Nov 02, 2014 at 09:09:51AM +0530, arwa arif wrote: [...] The reference code I used was https://github.com/carlosascari/2xBR-Filter;.

Re: [FFmpeg-devel] [PATCH] lavfi: add xbr filter

2014-11-02 Thread Timothy Gu
On Sunday, November 2, 2014, Timothy Gu timothyg...@gmail.com wrote: Found a C++ implementation: http://sourceforge.net/p/paintown/code/HEAD/tree/trunk/src/util/graphics/sdl/xbr.cpp It says xBR 3.3b and I'm not sure what variant that is in the filthy pants blog. It's close to C

Re: [FFmpeg-devel] New FATE Server Based on Node.js

2014-11-02 Thread Timothy Gu
On Sunday, November 2, 2014, Anshul anshul.ffm...@gmail.com wrote: Where should I look for code, that you have coded to make fate server in node.js As I have written in the first mail in the thread, the code is in https://github.com/TimothyGu/fateserver-node I like this change, just

Re: [FFmpeg-devel] [PATCH] doc/codecs: Better documentation for the libavcodec bitexact flag

2014-11-01 Thread Timothy Gu
On Friday, October 31, 2014, Michael Niedermayer michae...@gmx.at wrote: Signed-off-by: Michael Niedermayer michae...@gmx.at javascript:; --- doc/codecs.texi |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/codecs.texi b/doc/codecs.texi index 2bb6059..5cf2dc0

Re: [FFmpeg-devel] [patch 1/3]Fix bug for POWER LE: /libavcodec/ppc/me_cmp.c

2014-11-01 Thread Timothy Gu
你好: Hi, On Friday, October 31, 2014, Michael Niedermayer michae...@gmx.at wrote: Why do you keep sending patches which duplicate code? Maybe someone can translate this to a language you understand better then english: This is an Chinese translation. Hope this helps. 我把Michael的邮件翻译了一下。

[FFmpeg-devel] New FATE Server Based on Node.js

2014-11-01 Thread Timothy Gu
Hi all, ## Background For the past few weeks I have taken the liberty of learning Node.js. The inefficient godly Perl CGI code of fateserver obviously served as a non-example during my learning process. In the end, I decided to rewrite fateserver in asynchronous Javascript with Express.js and

Re: [FFmpeg-devel] New FATE Server Based on Node.js

2014-11-01 Thread Timothy Gu
Some more information... On Sat, Nov 1, 2014 at 10:33 PM, Timothy Gu timothyg...@gmail.com wrote: ## To-Dos Nevertheless, this is still an WIP. I have written history, results, and log pages, but not yet the index page. There might be bugs I have not discovered. The source is covered

Re: [FFmpeg-devel] Problem uploading results to f...@fate.ffmpeg.org

2014-10-28 Thread Timothy Gu
Hi, On Tuesday, October 28, 2014, Ngassa Finjap ngassafin...@gmail.com wrote: Hello, I have ran the FATE test suite on my Fedora host using this: ( make V=2 -j2 SAMPLES=/var/fate/samples THREADS=2 fate) and I can't seem to authenticate and upload the results. I had previously sent a key to

Re: [FFmpeg-devel] [PATCH] Use v4l2 input format automatically if filename starts with /dev/video

2014-10-24 Thread Timothy Gu
On Fri, Oct 24, 2014 at 11:50 AM, Andrey Utkin andrey.krieger.ut...@gmail.com wrote: 2014-10-24 20:34 GMT+04:00 Benoit Fouet benoit.fo...@free.fr: Shouldn't this also test p-filename for non-NULLness? LGTM otherwise. The code was copied from lavf/rtspdec.c There're places with same code. If

Re: [FFmpeg-devel] [PATCH] tools/crypto_bench: add CAST5 support

2014-10-18 Thread Timothy Gu
On Sat, Oct 18, 2014 at 2:10 PM, James Almer jamr...@gmail.com wrote: Signed-off-by: James Almer jamr...@gmail.com --- tools/crypto_bench.c | 45 + 1 file changed, 45 insertions(+) Any benchmark results available? Timothy

Re: [FFmpeg-devel] [PATCH 7/7] avcodec/ass: add FFmpeg signature

2014-10-11 Thread Timothy Gu
On Saturday, October 11, 2014, James Almer jamr...@gmail.com wrote: On 11/10/14 2:59 PM, Clément Bœsch wrote: --- libavcodec/ass.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/libavcodec/ass.c b/libavcodec/ass.c index ac1bfae..62981b6 100644 --- a/libavcodec/ass.c +++

Re: [FFmpeg-devel] [PATCH 7/7] avcodec/ass: add FFmpeg signature

2014-10-11 Thread Timothy Gu
On Sat, Oct 11, 2014 at 7:05 PM, James Almer jamr...@gmail.com wrote: On 11/10/14 10:58 PM, Timothy Gu wrote: I think you misread it: the colon is after the AV_STRINGIFY(LIBAVCODEC_VERSION). (avctx-flags CODEC_FLAG_BITEXACT) ? ; Script generated by FFmpeg/Lavc AV_STRINGIFY

Re: [FFmpeg-devel] [rfc] remove libraries documentation from doc page

2014-10-08 Thread Timothy Gu
On Fri, Oct 3, 2014 at 6:37 AM, compn te...@mi.rr.com wrote: hello on the docs page http://ffmpeg.org/documentation.html what good are these documentations? http://ffmpeg.org/libavutil.html http://ffmpeg.org/libswresample.html http://ffmpeg.org/libavcodec.html

Re: [FFmpeg-devel] [RFC][PATCH] web: News about FFmpeg in Debian

2014-10-07 Thread Timothy Gu
On Oct 6, 2014 3:23 PM, Alexander Strasser eclip...@gmx.net wrote: On 2014-10-06 01:35 +, Carl Eugen Hoyos wrote: Timothy Gu timothygu99 at gmail.com writes: The bad news is that the package probably won't migrate to Debian testing in time for the upcoming release Jessie

Re: [FFmpeg-devel] Compile broken

2014-10-03 Thread Timothy Gu
Hi, On Fri, Oct 3, 2014 at 6:17 PM, Ramit Bhalla ramitbha...@gmail.com wrote: With the current git head I'm getting the following error in libx264.c, x264_param_t has no member named i_avcintra_class Please rebuild with x264 git HEAD. To Carl, Michael, and others who fix configure: We now

Re: [FFmpeg-devel] FFmpeg IRC meeting October 4th 2014, UTC 16

2014-10-02 Thread Timothy Gu
On Thu, Oct 2, 2014 at 7:12 AM, Stefano Sabatini stefa...@gmail.com wrote: On date Wednesday 2014-10-01 10:18:58 +0200, Stefano Sabatini encoded: [...] So, since we have already two preferences for Saturday 4 October, I think we should stick with it. If I see no other comments, I'll settle

Re: [FFmpeg-devel] IRC meeting

2014-09-30 Thread Timothy Gu
Hi, On Mon, Sep 29, 2014 at 8:39 AM, Stefano Sabatini stefa...@gmail.com wrote: Hi, I want to propose to have an FFmpeg IRC meeting the next Saturday, 4th October, UTC 16. Alternatively, I propose the Saturday of the next week, Saturday October 11, same time. I don't think I will be

Re: [FFmpeg-devel] Branchpoint tags

2014-09-25 Thread Timothy Gu
On Tue, Sep 16, 2014 at 8:46 AM, Carl Eugen Hoyos ceho...@ag.or.at wrote: Michael Niedermayer michaelni at gmx.at writes: Should we add git tags to the revissions where releases are branched off ? Yes please, this would make my life much easier. n2.5-dev sounds ok. Ping. Personally I

Re: [FFmpeg-devel] [PATCH] Add input support for DeckLink devices.

2014-09-19 Thread Timothy Gu
On Fri, Sep 19, 2014 at 8:53 AM, Amnon Israely amno...@gmail.com wrote: What do you think might be the problem here? I changed streams order in deckling_dec.cpp and Video now on 0:0 Video is not guaranteed to be always on 0:0, and therefore you are trying to fix a nonexistent problem here.

Re: [FFmpeg-devel] [PATCH 1/18] avcodec: remove obsolete FF_API_FAST_MALLOC cruft

2014-09-15 Thread Timothy Gu
On Mon, Sep 15, 2014 at 1:03 PM, Michael Niedermayer michae...@gmx.at wrote: On Mon, Sep 15, 2014 at 04:08:49PM -0300, James Almer wrote: I'm not exactly interested in looking around to see if any of this deprecated stuff is still used. And IMO reintroducing them in a point release is quite

Re: [FFmpeg-devel] [WIP] lavfi: port mp/eq to a regular filter

2014-09-14 Thread Timothy Gu
On Sep 14, 2014 3:46 PM, James Darnley james.darn...@gmail.com wrote: --- Still a couple of things on the todo list (see the top of the new file) but I thought I would send the basics along for people to nit pick. configure| 1 + libavfilter/Makefile | 1 +

Re: [FFmpeg-devel] [PATCH 1/6] docs: add missing code formatting around commands

2014-09-12 Thread Timothy Gu
On Fri, Sep 12, 2014 at 11:06 AM, James Darnley james.darn...@gmail.com wrote: On 2014-09-12 01:33, Timothy Gu wrote: On Thu, Sep 11, 2014 at 4:31 PM, James Darnley james.darn...@gmail.com wrote: --- doc/developer.texi | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) I would

Re: [FFmpeg-devel] Fix bug for POWER8 LE for the test '/libavutil/float_altivec-test'

2014-09-11 Thread Timothy Gu
On Thu, Sep 11, 2014 at 7:18 AM, Grace Ryan rongyan...@gmail.com wrote: Hi, I present this patch, which is to fix the bug for the calculation of 'ff_vector_fmul_add_altivec' when run '/libavutil/float_altivec-test' on POWER8 little endian. The fate test result can be found on

Re: [FFmpeg-devel] [PATCH] web/contact: replace MPlayer guidelines link

2014-09-11 Thread Timothy Gu
On Thu, Sep 11, 2014 at 1:57 PM, Carl Eugen Hoyos ceho...@ag.or.at wrote: Lou Logan lou at lrcd.com writes: - a href=http://www.mplayerhq.hu/DOCS/tech/patches.txt; MPlayer patch guidelines/a I understand that this is not ideal but ... + a href=git-howto.htmlUsing git to develop FFmpeg/a

Re: [FFmpeg-devel] Fix bug for POWER8 LE for the test '/libavutil/float_altivec-test'

2014-09-11 Thread Timothy Gu
On Thu, Sep 11, 2014 at 1:59 PM, Carl Eugen Hoyos ceho...@ag.or.at wrote: Timothy Gu timothygu99 at gmail.com writes: +t1 = vec_perm(d, edges, vcprm(s0,s1,s2,s3)); +t0 = vec_perm(edges, d, vcprm(s0,s1,s2,s3)); ...you are using the old variable names, which I am pretty sure

Re: [FFmpeg-devel] [PATCH 1/6] docs: add missing code formatting around commands

2014-09-11 Thread Timothy Gu
On Thu, Sep 11, 2014 at 4:31 PM, James Darnley james.darn...@gmail.com wrote: --- doc/developer.texi | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) I would use @command{}. [...] Timothy ___ ffmpeg-devel mailing list

Re: [FFmpeg-devel] [PATCH 2/6] docs: add example around the suggested commit message format

2014-09-11 Thread Timothy Gu
On Thu, Sep 11, 2014 at 4:31 PM, James Darnley james.darn...@gmail.com wrote: It gets rendered inline in HTML and becomes not very clear. --- doc/developer.texi | 3 +++ 1 file changed, 3 insertions(+) OK. [...] Timothy ___ ffmpeg-devel mailing

Re: [FFmpeg-devel] [PATCH 3/6] docs: mention the preferred character to use in options

2014-09-11 Thread Timothy Gu
On Thu, Sep 11, 2014 at 4:31 PM, James Darnley james.darn...@gmail.com wrote: This addresses point 12 from the mplayer patches text file. Discussion about removing a link to this document can be found in the thread on ffmpeg-devel titled: [PATCH] web/contact: replace MPlayer guidelines link

Re: [FFmpeg-devel] [PATCH 5/6] docs: mention when one might be offered write access to the git repository

2014-09-11 Thread Timothy Gu
On Thu, Sep 11, 2014 at 4:31 PM, James Darnley james.darn...@gmail.com wrote: This addresses point 11 from the mplayer patches text file. Discussion about removing a link to this document can be found in the thread on ffmpeg-devel titled: [PATCH] web/contact: replace MPlayer guidelines link

Re: [FFmpeg-devel] [PATCH 4/6] docs: mention the comment policy

2014-09-11 Thread Timothy Gu
On Thu, Sep 11, 2014 at 4:31 PM, James Darnley james.darn...@gmail.com wrote: This addresses point 6 from the mplayer patches text file. Discussion about removing a link to this document can be found in the thread on ffmpeg-devel titled: [PATCH] web/contact: replace MPlayer guidelines link

Re: [FFmpeg-devel] [PATCH 6/6] docs: mention when and how one should be added as an author

2014-09-11 Thread Timothy Gu
On Thu, Sep 11, 2014 at 4:31 PM, James Darnley james.darn...@gmail.com wrote: This addresses point 13 from the mplayer patches text file. Discussion about removing a link to this document can be found in the thread on ffmpeg-devel titled: [PATCH] web/contact: replace MPlayer guidelines link

Re: [FFmpeg-devel] [PATCH] avformat/mpeg: increase score for short mpeg-ps by 1

2014-09-08 Thread Timothy Gu
On Sep 7, 2014 10:18 AM, Michael Niedermayer michae...@gmx.at wrote: - : AVPROBE_SCORE_EXTENSION / 2; // 1 more than .mpg + : AVPROBE_SCORE_EXTENSION / 2 + 1; // 1 more than .mpg The comment

Re: [FFmpeg-devel] [PATCH] avformat/rmdec: very basic MLTI support

2014-09-08 Thread Timothy Gu
On Sep 8, 2014 4:10 PM, Michael Niedermayer michae...@gmx.at wrote: +if (number_of_mdpr != 1) { +avpriv_request_sample(s, MLTI with multiple MDPR); +} No return? Timothy ___ ffmpeg-devel mailing list

Re: [FFmpeg-devel] [PATCH] Add a license to the LESS file

2014-09-05 Thread Timothy Gu
On Fri, Sep 5, 2014 at 12:10 PM, db0 company db0comp...@gmail.com wrote: On Wed, Aug 27, 2014 at 12:55 AM, Timothy Gu timothyg...@gmail.com wrote: You should make it clear that only style.less is covered in this license, not anything else. I added the full license in the header. The first

Re: [FFmpeg-devel] [PATCH] Add a license to the LESS file

2014-09-05 Thread Timothy Gu
On Fri, Sep 5, 2014 at 12:19 PM, Timothy Gu timothyg...@gmail.com wrote: On Fri, Sep 5, 2014 at 12:10 PM, db0 company db0comp...@gmail.com wrote: On Wed, Aug 27, 2014 at 12:55 AM, Timothy Gu timothyg...@gmail.com wrote: You should make it clear that only style.less is covered in this license

Re: [FFmpeg-devel] [PATCH] Use makeinfo to generate html doc for the new website

2014-09-03 Thread Timothy Gu
On Wed, Sep 3, 2014 at 3:41 PM, Timothy Gu timothyg...@gmail.com wrote: Will send new patch soon. New patch attached. Timothy patch.patch Description: Binary data ___ ffmpeg-devel mailing list ffmpeg-devel@ffmpeg.org http://ffmpeg.org/mailman

Re: [FFmpeg-devel] [PATCHv2] doc/demuxers: document gif demuxer

2014-09-02 Thread Timothy Gu
On Aug 31, 2014 3:16 PM, Lou Logan l...@lrcd.com wrote: +@item ignore_loop +GIF files can be set to loop infinitely or up to a certain number of +times. can contain information to loop... Can be set sounds like settable from a ffmpeg command. + +If @option{ignore_loop} is set to 1, then

Re: [FFmpeg-devel] [PATCH v3] doc/demuxers: document gif demuxer

2014-09-02 Thread Timothy Gu
On Sep 2, 2014 5:31 PM, Lou Logan l...@lrcd.com wrote: From d95991c4dd423cc4bc231510255f74dda600afbc Mon Sep 17 00:00:00 2001 From: Lou Logan l...@lrcd.com Date: Thu, 28 Aug 2014 16:26:11 -0800 Subject: [PATCH] doc/demuxers: document gif demuxer Signed-off-by: Lou Logan l...@lrcd.com ---

Re: [FFmpeg-devel] [PATCH] add silenceremove filter

2014-08-31 Thread Timothy Gu
On Aug 29, 2014 11:23 AM, Paul B Mahol one...@gmail.com wrote: Signed-off-by: Paul B Mahol one...@gmail.com --- doc/filters.texi | 62 ++ libavfilter/Makefile | 1 + libavfilter/af_silenceremove.c | 478 +

Re: [FFmpeg-devel] [PATCH] h261dec, ituh263dec: Avoid unnecessary -1 inside inner loop.

2014-08-31 Thread Timothy Gu
On Aug 31, 2014 11:36 AM, Reimar Döffinger reimar.doeffin...@gmx.de wrote: 3646 - 3597 decicycles in inner loop when decoding vsynth1-flv. Wow. [...] Timothy ___ ffmpeg-devel mailing list ffmpeg-devel@ffmpeg.org

Re: [FFmpeg-devel] [PATCH] Use makeinfo to generate html doc for the new website

2014-08-31 Thread Timothy Gu
On Sat, Aug 23, 2014 at 4:16 PM, Michael Niedermayer michae...@gmx.at wrote: On Sun, Jul 20, 2014 at 02:23:07PM -0700, Timothy Gu wrote: texi2html is deprecated by upstream in favor of makeinfo/texi2any. See: - https://www.gnu.org/software/texinfo/manual/texinfo/html_node/texi2html.html

[FFmpeg-devel] [PATCH] general: Fix usage of @float

2014-08-31 Thread Timothy Gu
makeinfo chokes on that. Signed-off-by: Timothy Gu timothyg...@gmail.com --- doc/general.texi | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/general.texi b/doc/general.texi index 9ce0b31..8d7555d 100644 --- a/doc/general.texi +++ b/doc/general.texi @@ -130,7 +130,7 @@ Go

[FFmpeg-devel] [PATCH 2/2] [WEB] Add generate-doc.sh to generate makeinfo-based ffmpeg docs

2014-08-31 Thread Timothy Gu
Signed-off-by: Timothy Gu timothyg...@gmail.com --- Changes: - src/template_doctitle is not deleted in this commit per Michael's request. Michael, now this patch should be able to be applied before the server patch I will send to you in a moment. README | 12 +--- generate

[FFmpeg-devel] [PATCH 1/2] [WEB] style: add warning style similar to .info but has a red border

2014-08-31 Thread Timothy Gu
Signed-off-by: Timothy Gu timothyg...@gmail.com --- No changes. src/less/style.less | 12 ++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/src/less/style.less b/src/less/style.less index 6a26684..0c9ea03 100644 --- a/src/less/style.less +++ b/src/less/style.less

Re: [FFmpeg-devel] [PATCH] lavu/hash.c: Add missing static const.

2014-08-30 Thread Timothy Gu
On Aug 30, 2014 7:37 AM, Reimar Döffinger reimar.doeffin...@gmx.de wrote: But mostly I care about having it in .rodata, everything else I'm willing to adapt to what others prefer. What are the gains for using .rodata instead of .data? Timothy ___

Re: [FFmpeg-devel] [PATCH] Add SUP/PGS subtitle demuxer

2014-08-30 Thread Timothy Gu
On Sat, Aug 30, 2014 at 9:41 PM, Marcus Johnson bumblebritche...@gmail.com wrote: If you don't mind me asking, what is DTS? because when I hear it I think of the DTS audio codec, but I know it's obviously not that, and googling DTS in the codec context won't get me anywhere. DTS = decoding

Re: [FFmpeg-devel] [PATCH] Include content of the news article in the website RSS

2014-08-28 Thread Timothy Gu
On Thu, Aug 28, 2014 at 7:26 AM, Alexander Strasser eclip...@gmx.net wrote: Hi! On 2014-05-23 00:28 +0200, Alexander Strasser wrote: On 2014-05-11 01:37 +0200, Gerion Entrup wrote: Am Donnerstag 01 Mai 2014, 23:48:29 schrieb Alexander Strasser: alternative. What do you and/or others think

Re: [FFmpeg-devel] [PATCH 2/2] Add missing const all over the place.

2014-08-28 Thread Timothy Gu
On Aug 28, 2014 3:46 PM, Reimar Döffinger reimar.doeffin...@gmx.de wrote: There is a risk that one in the code that is not always compiled might break things. What do you mean by 'one in the code'? [...] Timothy ___ ffmpeg-devel mailing list

Re: [FFmpeg-devel] [FFmpeg-cvslog] avformat/rtpdec_asf: fix compiler warning about const qualifier being discarded

2014-08-28 Thread Timothy Gu
On Aug 28, 2014 6:14 AM, Michael Niedermayer michae...@gmx.at wrote: buf is assigned to AVIOContext.buffer, which is written to by some functions using AVIOContext Doesn't const only apply to this particular function? In other words, doesn't const only guarantee that it is not changed inside

Re: [FFmpeg-devel] [PATCH] doc/demuxers: document gif demuxer

2014-08-28 Thread Timothy Gu
On Aug 28, 2014 5:27 PM, Lou Logan l...@lrcd.com wrote: Signed-off-by: Lou Logan l...@lrcd.com --- doc/demuxers.texi | 26 ++ 1 file changed, 26 insertions(+) diff --git a/doc/demuxers.texi b/doc/demuxers.texi index d51b9d0..7b96d85 100644 --- a/doc/demuxers.texi

Re: [FFmpeg-devel] [PATCH] bktr: Fix Fabrice's name

2014-08-27 Thread Timothy Gu
On Wed, Aug 27, 2014 at 10:18 AM, Michael Niedermayer michae...@gmx.at wrote: On Tue, Aug 26, 2014 at 04:13:52PM -0700, Timothy Gu wrote: Signed-off-by: Timothy Gu timothyg...@gmail.com --- libavdevice/bktr.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) applied thanks Can you

Re: [FFmpeg-devel] [PATCH] lavu/frame: minor correction of language in comment about linesize

2014-08-27 Thread Timothy Gu
On Wed, Aug 27, 2014 at 12:38 PM, James Darnley james.darn...@gmail.com wrote: --- libavutil/frame.h |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) OK diff --git a/libavutil/frame.h b/libavutil/frame.h index 2391d3e..d6d017c 100644 --- a/libavutil/frame.h +++

Re: [FFmpeg-devel] [FFmpeg-cvslog] avformat/rtpdec_asf: fix compiler warning about const qualifier being discarded

2014-08-27 Thread Timothy Gu
On Wed, Aug 27, 2014 at 7:28 PM, Michael Niedermayer michae...@gmx.at wrote: On Wed, Aug 27, 2014 at 06:17:36PM -0700, Timothy Gu wrote: Michael Niedermayer g...@videolan.org writes: ffmpeg | branch: master | Michael Niedermayer michae...@gmx.at | Wed Aug 27 23:53:53 2014 +0200

Re: [FFmpeg-devel] [PATCH] configure: disallow OpenCL with shared libs

2014-08-27 Thread Timothy Gu
On Wed, Aug 27, 2014 at 7:53 PM, Wei Gao highgod0...@gmail.com wrote: 2014-08-13 9:45 GMT+08:00 Timothy Gu timothyg...@gmail.com: On Aug 12, 2014 6:43 PM, highgod0401 highgod0...@gmail.com wrote: Hi Warning is OK for me. Do you plan to change the API? Hi Sorry for the late reply

Re: [FFmpeg-devel] [PATCH] Add a license to the LESS file

2014-08-26 Thread Timothy Gu
On Tue, Aug 26, 2014 at 12:38 PM, db0company db0comp...@gmail.com wrote: --- LICENSE.txt | 21 + src/less/style.less |6 -- 2 files changed, 25 insertions(+), 2 deletions(-) create mode 100644 LICENSE.txt diff --git a/LICENSE.txt b/LICENSE.txt new

[FFmpeg-devel] [PATCH] bktr: Fix Fabrice's name

2014-08-26 Thread Timothy Gu
Signed-off-by: Timothy Gu timothyg...@gmail.com --- libavdevice/bktr.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavdevice/bktr.c b/libavdevice/bktr.c index d09d452..52d090c 100644 --- a/libavdevice/bktr.c +++ b/libavdevice/bktr.c @@ -3,7 +3,7 @@ * Copyright (c) 2002

Re: [FFmpeg-devel] [PATCH 1/2] fate-run.sh: add function to execute raw ffmpeg command

2014-08-25 Thread Timothy Gu
On Mon, Aug 25, 2014 at 12:27 PM, Vignesh Venkatasubramanian vigne...@google.com wrote: add ffmpeg_raw() function to fate-run.sh which will run the exact ffmpeg command as specified in the *.mak file without any changes. --- tests/fate-run.sh | 4 1 file changed, 4 insertions(+) diff

Re: [FFmpeg-devel] [PATCH 0/2] x86: hevc_mc: port to SSSE3

2014-08-23 Thread Timothy Gu
On Aug 23, 2014 7:47 AM, James Almer jamr...@gmail.com wrote: On 23/08/14 11:07 AM, Mickaël Raulet wrote: For 10bits and 12bits, they should stay sse4 as well because of packusdw. You need some instructions to convert it to ssse3 see below static av_always_inline __m128i

Re: [FFmpeg-devel] [PATCH] Adds support for constant quality mode in VP9.

2014-08-22 Thread Timothy Gu
On Aug 22, 2014 1:29 PM, Debargha Mukherjee debar...@google.com wrote: Unless the codec is VP9, VPX_Q will not be set. So the behavior does not change for VP8. If it's not set, then the code won't compile with older libvpx. Timothy ___ ffmpeg-devel

[FFmpeg-devel] [PATCH 2/2] vidstabutils: improve documentation

2014-08-21 Thread Timothy Gu
Signed-off-by: Timothy Gu timothyg...@gmail.com --- libavfilter/vidstabutils.h | 17 ++--- 1 file changed, 14 insertions(+), 3 deletions(-) diff --git a/libavfilter/vidstabutils.h b/libavfilter/vidstabutils.h index 93278f6..c6d6ced 100644 --- a/libavfilter/vidstabutils.h +++ b

Re: [FFmpeg-devel] Codec Routing

2014-08-21 Thread Timothy Gu
Hi, This question belongs in ffmpeg-u...@ffmpeg.org mailing list. I have CC'd this mail to that mailing list, and please don't reply to ffmpeg-devel anymore. On Thu, Aug 21, 2014 at 4:55 PM, Chuck Burfoot ch...@burfoots.com wrote: I build with --enable-libvpx. I was keenly interested in the

Re: [FFmpeg-devel] [RFC] [PATCH] hevc_ps: reorder SPS reading to allow some errors

2014-08-21 Thread Timothy Gu
On Aug 21, 2014 10:14 AM, Christophe Gisquet christophe.gisq...@gmail.com wrote: Hi, 2014-08-21 3:06 GMT+02:00 Michael Niedermayer michae...@gmx.at: heres a narrower solution for this file not sure its better i can apply whichever you prefer, probably we wont find out which is the best

Re: [FFmpeg-devel] Reintroducing FFmpeg to Debian

2014-08-20 Thread Timothy Gu
Hi Attila, I will do a small self-intro, as you most likely don't know me: I am a high school student who mainly writes documentation for FFmpeg, but sometimes do small code fixes and patch review (mainly related to documentation), both for FFmpeg and Libav. I sent my first patch to FFmpeg last

Re: [FFmpeg-devel] [PATCH] doc/ffmpeg: fix metadata language example

2014-08-19 Thread Timothy Gu
On Tue, Aug 19, 2014 at 4:20 PM, Lou Logan l...@lrcd.com wrote: Signed-off-by: Lou Logan l...@lrcd.com --- doc/ffmpeg.texi | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) OK, of course. [...] Timothy ___ ffmpeg-devel mailing list

Re: [FFmpeg-devel] [PATCH] avcodec/hevc_ps: do cleanup in case of unsupported bit depth

2014-08-19 Thread Timothy Gu
On Tue, Aug 19, 2014 at 6:49 PM, Michael Niedermayer michae...@gmx.at wrote: Fixes memleak Fixes CID1231989 Signed-off-by: Michael Niedermayer michae...@gmx.at --- libavcodec/hevc_ps.c |3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) Looks OK. diff --git

Re: [FFmpeg-devel] [PATCH] doc/filters/apad: extend documentation

2014-08-18 Thread Timothy Gu
On Mon, Aug 18, 2014 at 5:53 AM, Stefano Sabatini stefa...@gmail.com wrote: --- doc/filters.texi | 47 +-- 1 file changed, 45 insertions(+), 2 deletions(-) diff --git a/doc/filters.texi b/doc/filters.texi index 0ca1d6f..44eecca 100644 ---

Re: [FFmpeg-devel] [PATCH] avfilter/showcqt: add fontcolor option

2014-08-17 Thread Timothy Gu
On Sun, Aug 17, 2014 at 4:54 PM, Muhammad Faiz mfc...@gmail.com wrote: This fontcolor option uses arithmetic expression, not color value, so color names aren't available. Thank's You should use AV_OPT_TYPE_COLOR instead of AV_OPT_TYPE_STRING to make the color names usable. Look at how

<    1   2   3   4   5   6   >