[FFmpeg-devel] [PATCH 01/10] aacenc_is: Make calc_is_encoding_err static

2015-08-21 Thread Timothy Gu
It's not used anywhere else. --- libavcodec/aacenc_is.c | 10 +- libavcodec/aacenc_is.h | 11 --- 2 files changed, 9 insertions(+), 12 deletions(-) diff --git a/libavcodec/aacenc_is.c b/libavcodec/aacenc_is.c index 4ae1054..2a0ed86 100644 --- a/libavcodec/aacenc_is.c +++

[FFmpeg-devel] [PATCH 10/10] ffv1: Add missing ff_ prefixes

2015-08-21 Thread Timothy Gu
--- libavcodec/ffv1.c| 16 libavcodec/ffv1.h| 14 +++--- libavcodec/ffv1dec.c | 16 libavcodec/ffv1enc.c | 14 +++--- 4 files changed, 30 insertions(+), 30 deletions(-) diff --git a/libavcodec/ffv1.c b/libavcodec/ffv1.c index

[FFmpeg-devel] [PATCH 07/10] aacsbr_fixed: Make fixed_{exp, log}_table static const

2015-08-21 Thread Timothy Gu
--- libavcodec/aacsbr_fixed.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libavcodec/aacsbr_fixed.c b/libavcodec/aacsbr_fixed.c index 1fc7385..e048069 100644 --- a/libavcodec/aacsbr_fixed.c +++ b/libavcodec/aacsbr_fixed.c @@ -78,7 +78,7 @@ static const int CONST_LN2

[FFmpeg-devel] [PATCH 09/10] fmtconvert: Remove float_interleave*

2015-08-21 Thread Timothy Gu
They were not public or used anywhere. --- libavcodec/fmtconvert.c | 31 --- libavcodec/fmtconvert.h | 4 2 files changed, 35 deletions(-) diff --git a/libavcodec/fmtconvert.c b/libavcodec/fmtconvert.c index e6fc509..1de1d31 100644 --- a/libavcodec/fmtconvert.c

[FFmpeg-devel] [PATCH 05/10] aacenctab: Use FF_ARRAY_ELEMS

2015-08-21 Thread Timothy Gu
--- libavcodec/aacenctab.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libavcodec/aacenctab.c b/libavcodec/aacenctab.c index f831592..f3d70fb 100644 --- a/libavcodec/aacenctab.c +++ b/libavcodec/aacenctab.c @@ -104,5 +104,5 @@ const uint8_t *ff_aac_swb_size_1024[] = {

[FFmpeg-devel] [PATCH 03/10] aacenc: Harmonize multiple inclusion guards

2015-08-21 Thread Timothy Gu
--- libavcodec/aacenc_is.h | 6 +++--- libavcodec/aacenc_quantization.h | 5 + 2 files changed, 8 insertions(+), 3 deletions(-) diff --git a/libavcodec/aacenc_is.h b/libavcodec/aacenc_is.h index e2f08b3..47542ae 100644 --- a/libavcodec/aacenc_is.h +++ b/libavcodec/aacenc_is.h @@

[FFmpeg-devel] [PATCH 06/10] aacdec_fixed: Make exp2tab static const

2015-08-21 Thread Timothy Gu
--- libavcodec/aacdec_fixed.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavcodec/aacdec_fixed.c b/libavcodec/aacdec_fixed.c index 2a3dbf6..875ef58 100644 --- a/libavcodec/aacdec_fixed.c +++ b/libavcodec/aacdec_fixed.c @@ -101,7 +101,7 @@ static av_always_inline void

[FFmpeg-devel] [PATCH 08/10] vp9dsp: Add missing ff_ prefixes

2015-08-21 Thread Timothy Gu
--- libavcodec/vp9dsp_template.c | 24 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/libavcodec/vp9dsp_template.c b/libavcodec/vp9dsp_template.c index 8f10ccf..5a8578a 100644 --- a/libavcodec/vp9dsp_template.c +++ b/libavcodec/vp9dsp_template.c @@

[FFmpeg-devel] [PATCH 04/10] aacenctab: Add missing ff_ prefixes

2015-08-21 Thread Timothy Gu
--- libavcodec/aacenc.c| 6 +++--- libavcodec/aacenctab.c | 8 libavcodec/aacenctab.h | 8 3 files changed, 11 insertions(+), 11 deletions(-) diff --git a/libavcodec/aacenc.c b/libavcodec/aacenc.c index af77379..71071eb 100644 --- a/libavcodec/aacenc.c +++

Re: [FFmpeg-devel] [PATCH] ffserver: cast PID to int64_t before printing

2015-08-20 Thread Timothy Gu
On Thu, Aug 20, 2015 at 6:03 PM Ganesh Ajjanagadde gajjanaga...@gmail.com wrote: -avio_printf(pb, Running as pid %d.\n, stream-pid); +avio_printf(pb, Running as pid %ld.\n, (int64_t) stream-pid); You need `% PRIi64` as the format specifier. Timothy

Re: [FFmpeg-devel] [PATCH] configure: force -mconsole when linking SDL under MinGW

2015-08-18 Thread Timothy Gu
On Tue, Aug 18, 2015 at 9:01 AM Stephen Hutchinson qyo...@gmail.com wrote: When building SDL with MinGW, it sets -mwindows with the assumption that the application is a GUI application. If this is linked without passing -mconsole to configure via --extra-ldflags, stdout will be silenced from

Re: [FFmpeg-devel] [PATCH] doc/developer: Suggest everyone to help with patch reviews

2015-08-13 Thread Timothy Gu
On Thu, Aug 13, 2015 at 8:38 AM Michael Niedermayer michae...@gmx.at wrote: From: Michael Niedermayer mich...@niedermayer.cc Signed-off-by: Michael Niedermayer mich...@niedermayer.cc --- doc/developer.texi |4 1 file changed, 4 insertions(+) diff --git a/doc/developer.texi

Re: [FFmpeg-devel] [PATCH] ffmpeg: Implement support for seeking relative to EOF

2015-07-26 Thread Timothy Gu
On 7/27/15, Michael Niedermayer michae...@gmx.at wrote: From: Michael Niedermayer mich...@niedermayer.cc Fixes Ticket227 Signed-off-by: Michael Niedermayer mich...@niedermayer.cc --- ffmpeg.h |1 + ffmpeg_opt.c |6 ++ 2 files changed, 7 insertions(+) docs missing […]

Re: [FFmpeg-devel] FFmpeg/MPlayer/rtmpdump possibly searching for a new server and hosting

2015-07-15 Thread Timothy Gu
On 7/15/15, Michael Niedermayer mich...@niedermayer.cc wrote: On Tue, Jul 14, 2015 at 11:42:30PM +0100, Kieran Kunhya wrote: OVH has poor quality connectivity by the way - this could lead to performance issues in some countries. Has anyone done some hoster connectivity comparissions /tests ?

Re: [FFmpeg-devel] [PATCH 1/2] lavf/avio: Extend API with avio_move() and avio_delete()

2015-06-21 Thread Timothy Gu
El sábado, 20 de junio de 2015, Mariusz Szczepańczyk mszczepanc...@gmail.com escribió: --- doc/APIchanges| 4 libavformat/avio.c| 38 ++ libavformat/avio.h| 19 +++ libavformat/url.h | 2 ++

Re: [FFmpeg-devel] [PATCH] configure: make makeinfo_html check more robust

2015-06-15 Thread Timothy Gu
On Sun, Jun 14, 2015 at 2:32 AM Andreas Cadhalpun andreas.cadhal...@googlemail.com wrote: The current check is too strict for newer makeinfo versions. Existing version strings are: makeinfo (GNU texinfo) 4.13 makeinfo (GNU texinfo) 5.2 texi2any (GNU texinfo) 5.9.93 Probably version 6 will

Re: [FFmpeg-devel] [RFC] DXVA2 decoding and FFmpeg

2015-05-29 Thread Timothy Gu
On Fri, May 29, 2015 at 03:49:22PM +0200, Stefano Sabatini wrote: @@ -405,3 +406,16 @@ int av_image_copy_to_buffer(uint8_t *dst, int dst_size, return size; } + +void av_image_copy_plane_from_uswc(uint8_t *dst, size_t dst_linesize, +const uint8_t *src,

[FFmpeg-devel] [PATCH] network: Move variable declaration under an #if

2015-05-27 Thread Timothy Gu
Avoids an unused variable warning. --- libavformat/network.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavformat/network.c b/libavformat/network.c index 2d05031..8cc5aad 100644 --- a/libavformat/network.c +++ b/libavformat/network.c @@ -29,8 +29,8 @@ int

[FFmpeg-devel] [PATCH 1/2] fft: x86: Clear __SECT__ before declaring a structure

2015-05-25 Thread Timothy Gu
This commit reverts 599888a48. This silences the following warning: libavcodec/x86/fft.asm:54: warning: section flags ignored on section redeclaration The cause of this warning is that because `struc` and `endstruc` attempts to revert to the previous section state [1]. The section state

[FFmpeg-devel] [PATCH 2/2] resample: x86: Clear __SECT__ before declaring a structure

2015-05-25 Thread Timothy Gu
Silences a warning: libswresample/x86/resample.asm:48: warning: section flags ignored on section redeclaration --- libswresample/x86/resample.asm | 2 ++ 1 file changed, 2 insertions(+) diff --git a/libswresample/x86/resample.asm b/libswresample/x86/resample.asm index a57ff37..10f29b0

[FFmpeg-devel] [PATCH 1/2] Revert Move struc FFTContext below SECTION_RODATA

2015-05-25 Thread Timothy Gu
This reverts commit 599888a48040f4086c9086aae958b7231b37afcc. The commit does not silence the warning on ELF-based systems, and will be fixed in the subsequent commit. Conflicts: libavcodec/x86/fft_mmx.asm --- libavcodec/x86/fft.asm | 4 ++-- 1 file changed, 2 insertions(+), 2

[FFmpeg-devel] [PATCH 2/2] x86inc: Clear __SECT__

2015-05-25 Thread Timothy Gu
This commit silences warning(s) like: libavcodec/x86/fft.asm:93: warning: section flags ignored on section redeclaration The cause of this warning is that because `struc` and `endstruc` attempts to revert to the previous section state [1]. The section state is stored in the macro

[FFmpeg-devel] [PATCH] nutdec: Remove unused label

2015-05-13 Thread Timothy Gu
Added in 361702660d2c37a63b7d6381d39e1e1de8405260. Modified version that doesn't use this label merged in 55231323b0fdc84a529418d673148cf1f3157229, thus obsoleting this label. --- libavformat/nutdec.c | 6 ++ 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/libavformat/nutdec.c

[FFmpeg-devel] [PATCH] [BACKPORT] tests: drop bc dependency

2015-05-13 Thread Timothy Gu
Hi all, I find commit a982c5d74fbc7ff5bd2f2f73af61ae48e9b1bcc6 [1]: commit a982c5d74fbc7ff5bd2f2f73af61ae48e9b1bcc6 Author: Clément Bœsch u...@pkh.me Date: Mon Jan 19 22:56:59 2015 +0100 tests: drop bc dependency We already have a dependency on awk and bc is

Re: [FFmpeg-devel] [PATCH 1/4] avutil: add av_format_option_for_user() callback system

2015-05-10 Thread Timothy Gu
On May 10, 2015 10:26 PM, James Almer jamr...@gmail.com wrote: On 10/05/15 10:18 PM, Michael Niedermayer wrote: Signed-off-by: Michael Niedermayer michae...@gmx.at --- libavutil/opt.c | 32 libavutil/opt.h | 21 + 2 files

Re: [FFmpeg-devel] [PATCH 2/3] configure: remove loongson check inline asm and mips dependent

2015-05-08 Thread Timothy Gu
On Fri, May 8, 2015 at 3:06 AM 周晓勇 zhouxiaoy...@loongson.cn wrote: From 6f76746ecd5b623e7610e293be2cbe02022dd22a Mon Sep 17 00:00:00 2001 From: ZhouXiaoyong zhouxiaoy...@loongson.cn Date: Thu, 7 May 2015 11:50:42 +0800 Subject: [PATCH 2/3] configure: remove loongson check inline asm and mips

Re: [FFmpeg-devel] [PATCH 1/2] tests/tiny_psnr: do not ignore errors from run_psnr

2015-04-22 Thread Timothy Gu
On Thu, Apr 23, 2015 at 04:43:09AM +0200, Michael Niedermayer wrote: failure to calculate psnr should not result in tiny_psnr returning success Signed-off-by: Michael Niedermayer michae...@gmx.at --- tests/tiny_psnr.c |9 ++--- 1 file changed, 6 insertions(+), 3 deletions(-)

Re: [FFmpeg-devel] [PATCH] git-howto.texi: fix a typo

2015-04-22 Thread Timothy Gu
On Wed, Apr 22, 2015 at 09:00:17PM -0700, James Zern wrote: On Wed, Apr 22, 2015 at 8:59 PM, James Zern jz...@google.com wrote: s/Refer to and to sync/Refer to how to sync/ --- doc/git-howto.texi | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/git-howto.texi

Re: [FFmpeg-devel] [PATCH] avcodec/mips: MSA (MIPS-SIMD-Arch) optimizations for H264 lpf and weight/biweight functions

2015-04-21 Thread Timothy Gu
On Tue, Apr 21, 2015 at 10:22:48AM +, Parag Salasakar wrote: These are 'optimization' patches for MSA. We surely have plans to add runtime CPU detection code in near future as a separate patch. OK, looking forward to that. Timothy ___

Re: [FFmpeg-devel] [PATCH] avcodec/mips: MSA (MIPS-SIMD-Arch) optimizations for H264 lpf and weight/biweight functions

2015-04-20 Thread Timothy Gu
On Mon, Apr 20, 2015 at 12:04 PM James Almer jamr...@gmail.com wrote: For that matter, do mips processors even have some sort of cpuid instruction at all? AFAIK it does. See: - https://github.com/torvalds/linux/blob/master/arch/mips/kernel/cpu-probe.c#L519-L520 -

Re: [FFmpeg-devel] [PATCH] avcodec/mips: MSA (MIPS-SIMD-Arch) optimizations for H264 lpf and weight/biweight functions

2015-04-20 Thread Timothy Gu
On Mon, Apr 20, 2015 at 2:54 AM shivraj.pa...@imgtec.com wrote: From: Shivraj Patil shivraj.pa...@imgtec.com Signed-off-by: Shivraj Patil shivraj.pa...@imgtec.com --- libavcodec/h264dsp.c|1 + libavcodec/h264dsp.h|2 + libavcodec/mips/Makefile

Re: [FFmpeg-devel] [PATCH] avfilter/vf_colorkey: Add colorkey video filter

2015-04-18 Thread Timothy Gu
On Sat, Apr 18, 2015 at 1:30 PM Timo Rothenpieler t...@rothenpieler.org wrote: --- Changelog | 1 + MAINTAINERS | 1 + libavfilter/Makefile | 1 + libavfilter/allfilters.c | 1 + libavfilter/vf_colorkey.c | 226

Re: [FFmpeg-devel] [PATCH] aacpsy: avoid norm_fac becoming NaN

2015-04-16 Thread Timothy Gu
On Thu, Apr 16, 2015 at 10:41 AM Claudio Freire klaussfre...@gmail.com wrote: It should be if band-thr 0.0f, all divisions by zero return something that casts into an ~1: Isn't division by zero undefined behavior? Timothy ___ ffmpeg-devel mailing

Re: [FFmpeg-devel] [PATCH] remove the www. from the URL - http://evermeet.cx/ffmpeg/

2015-04-16 Thread Timothy Gu
On Thu, Apr 16, 2015 at 5:51 PM, Helmut K. C. Tessarek tessa...@evermeet.cx wrote: Hi Timothy, On 2015-04-16 20:33, Timothy Gu wrote: Applying: remove the www. from the URL - http://evermeet.cx/ffmpeg/ fatal: corrupt patch at line 18 Thanks for fixing the patch. What was the problem

Re: [FFmpeg-devel] [PATCH] remove the www. from the URL - http://evermeet.cx/ffmpeg/

2015-04-16 Thread Timothy Gu
On Thu, Apr 16, 2015 at 09:06:55PM -0400, Helmut K. C. Tessarek wrote: Hmm, I believe my mail client screwed it up. I had to use git imap-send and then the mail client to actually send the patch, because git send-email gives me the following error on all my machines:

Re: [FFmpeg-devel] [PATCH] remove the www. from the URL - http://evermeet.cx/ffmpeg/

2015-04-16 Thread Timothy Gu
On Thu, Apr 16, 2015 at 5:19 PM, Helmut K. C. Tessarek tessa...@evermeet.cx wrote: --- src/download | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) Applying: remove the www. from the URL - http://evermeet.cx/ffmpeg/ fatal: corrupt patch at line 18 Patch failed at 0001 remove the www.

[FFmpeg-devel] [PATCH] fate: Include branch information in the payload header

2015-04-12 Thread Timothy Gu
The server is properly equiped not to choke on that now. --- tests/fate.sh | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/tests/fate.sh b/tests/fate.sh index 81224b6..6ce8c48 100755 --- a/tests/fate.sh +++ b/tests/fate.sh @@ -84,8 +84,7 @@ clean(){ report(){

Re: [FFmpeg-devel] [PATCH] fate: Include branch information in the payload header

2015-04-12 Thread Timothy Gu
On Sun, Apr 12, 2015 at 8:28 AM Timothy Gu timothyg...@gmail.com wrote: The server is properly equiped not to choke on that now. --- tests/fate.sh | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) This was applied by Michael earlier today. [...] Timothy

Re: [FFmpeg-devel] [PATCH] tests: Add ATRAC3plus tests

2015-04-11 Thread Timothy Gu
Diego, On Fri, Apr 10, 2015 at 2:16 PM Timothy Gu timothyg...@gmail.com wrote: --- The official name is ATRAC3plus, so that is used. - at3p_sample1.oma is from samples.libav.org - at3p_sample1.pcm is in incoming. - sonateno14op27-2-cut.aa3 is a smaller version of sonateno14op27-2.aa3

[FFmpeg-devel] [PATCH] Fixed remuxing of HDMV PGS subtitles

2015-04-11 Thread Timothy Gu
From: Niklesh Lalwani lalwani1...@gmail.com Fixes #2622. --- From https://github.com/FFmpeg/FFmpeg/pull/125 libavformat/mpegts.h| 2 ++ libavformat/mpegtsenc.c | 3 +++ 2 files changed, 5 insertions(+) diff --git a/libavformat/mpegts.h b/libavformat/mpegts.h index 84f3098..f6a6551 100644

[FFmpeg-devel] [PATCH] Add atrac3+ tests

2015-04-10 Thread Timothy Gu
--- $ du -h * 656Kat3p_sample1.oma 3.6Mat3p_sample1.pcm 1.9Msonateno14op27-2.aa3 100Ksonateno14op27-2-cut.aa3 2.9Msonateno14op27-2-cut.pcm tests/fate/atrac.mak | 17 ++--- 1 file changed, 14 insertions(+), 3 deletions(-) diff --git a/tests/fate/atrac.mak

Re: [FFmpeg-devel] [PATCH] Add atrac3+ tests

2015-04-10 Thread Timothy Gu
On Fri, Apr 10, 2015 at 1:24 PM, Timothy Gu timothyg...@gmail.com wrote: --- $ du -h * 656Kat3p_sample1.oma 3.6Mat3p_sample1.pcm 1.9Msonateno14op27-2.aa3 100Ksonateno14op27-2-cut.aa3 2.9Msonateno14op27-2-cut.pcm Samples in incoming. Timothy

Re: [FFmpeg-devel] [PATCH 4/4] Add simple avrn test

2015-04-10 Thread Timothy Gu
On Fri, Apr 10, 2015 at 1:19 PM, Michael Niedermayer michae...@gmx.at wrote: On Fri, Apr 10, 2015 at 10:27:37AM -0700, Timothy Gu wrote: Couldn't find any non-mjpeg samples. --- tests/fate/video.mak | 3 +++ tests/ref/fate/avrn | 47 +++ 2 files

[FFmpeg-devel] [PATCH] [BACKPORT] tests: Fix test name for pixfmts tests

2015-04-07 Thread Timothy Gu
Hi, Please if possible backport the following commit to all release branches currently being tested: From e1ee0521a698809ed216e9e5c11bd2bbb466ed04 Mon Sep 17 00:00:00 2001 From: Timothy Gu timothyg...@gmail.com Date: Sun, 9 Nov 2014 21:37:18 -0800 Subject: [PATCH] tests: Fix test name

[FFmpeg-devel] [PATCH] fateserver: Support parsing version 1 headers

2015-04-07 Thread Timothy Gu
--- Now with proper commit message --- FATE.pm | 9 +++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/FATE.pm b/FATE.pm index 544e80f..30c220b 100644 --- a/FATE.pm +++ b/FATE.pm @@ -47,7 +47,7 @@ our $gitweb = http://git.videolan.org/?p=ffmpeg.git;; sub split_header {

Re: [FFmpeg-devel] [PATCH] fateserver: Support parsing version 1 headers

2015-04-07 Thread Timothy Gu
, Apr 7, 2015 at 7:45 PM Timothy Gu timothyg...@gmail.com wrote: diff --git a/FATE.pm b/FATE.pm index 544e80f..30c220b 100644 --- a/FATE.pm +++ b/FATE.pm @@ -47,7 +47,7 @@ our $gitweb = http://git.videolan.org/?p=ffmpeg.git;; sub split_header { my @hdr = split /:/, $_[0]; $hdr[0] eq

Re: [FFmpeg-devel] [PATCH] fateserver: Support parsing version 1 headers

2015-04-07 Thread Timothy Gu
On Tue, Apr 7, 2015 at 8:04 PM Lou Logan l...@lrcd.com wrote: On Tue, Apr 7, 2015, at 06:53 PM, Timothy Gu wrote: ...but unfortunately their fateserver source code is not open to public Why? Last year when I asked Luca he said it was Janne's territory, and an email to Janne was not replied

Re: [FFmpeg-devel] Areas needing work

2015-04-06 Thread Timothy Gu
On Mon, Apr 6, 2015 at 10:42 AM Michael Niedermayer michae...@gmx.at wrote: On Mon, Apr 06, 2015 at 04:48:24PM +, Timothy Gu wrote: On Sun, Apr 5, 2015 at 8:43 PM Michael Niedermayer michae...@gmx.at wrote: [...] * our fate server lacks the ability to display a user specified

Re: [FFmpeg-devel] Areas needing work

2015-04-06 Thread Timothy Gu
On Sun, Apr 5, 2015 at 8:43 PM Michael Niedermayer michae...@gmx.at wrote: Hi all There are various areas in the project that are not maintained as well as they should be, heres a certainly not comlpete list, dont hesitate to reply and add to it. If someone wants to pick something up and

Re: [FFmpeg-devel] [PATCH] swr/resample: use av_clip functions

2015-04-05 Thread Timothy Gu
On Sun, Apr 5, 2015 at 11:40 AM James Almer jamr...@gmail.com wrote: On 05/04/15 3:26 PM, James Almer wrote: Signed-off-by: James Almer jamr...@gmail.com --- libswresample/resample_template.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git

Re: [FFmpeg-devel] [PATCH 4/4] avutil/mips/intreadwrite: build fix for mips64r6 (instruction 'lwl' not supported)

2015-04-01 Thread Timothy Gu
On Wed, Apr 1, 2015 at 6:56 AM shivraj.pa...@imgtec.com wrote: From: Shivraj Patil shivraj.pa...@imgtec.com Note:- This is a preparation patch to submit optimized code for msa(mips simd architecture). Signed-off-by: Shivraj Patil shivraj.pa...@imgtec.com --- libavutil/mips/intreadwrite.h

Re: [FFmpeg-devel] [PATCH 2/2] webmdashenc: Support for live stream manifests

2015-03-31 Thread Timothy Gu
On Tue, Mar 31, 2015 at 7:40 PM Vignesh Venkatasubramanian vigne...@google.com wrote: This patch adds support for creating DASH manifests for WebM Live Streams. It also updates the documentation and adds a fate test to verify the behavior of the new muxer flag. Signed-off-by: Vignesh

Re: [FFmpeg-devel] [PATCH 2/2] webmdashenc: Support for live stream manifests

2015-03-31 Thread Timothy Gu
On Tue, Mar 31, 2015 at 5:11 PM Vignesh Venkatasubramanian vigne...@google.com wrote: This patch adds support for creating DASH manifests for WebM Live Streams. It also updates the documentation and adds a fate test to verify the behavior of the new muxer flag. Signed-off-by: Vignesh

Re: [FFmpeg-devel] [PATCH 2/7] Removed unecessary if/else branch when getting QP.

2015-03-27 Thread Timothy Gu
For all patches in this series, please use the following format as commit message: postproc: blah Remember, FFmpeg has a giant code base and it is often useful to see what part is being modified in the patch in the first word of the title. See

Re: [FFmpeg-devel] [PATCH 2/5] Use @verbatim instead of @example for ASCII arts

2015-03-24 Thread Timothy Gu
On Mon, Mar 23, 2015 at 8:38 AM Michael Niedermayer michae...@gmx.at wrote: On Sun, Mar 22, 2015 at 08:47:17PM -0700, Timothy Gu wrote: Partially fixes #3869. --- doc/ffmpeg.texi | 20 ++-- doc/ffserver.texi | 6 -- doc/filters.texi | 4 ++-- 3 files changed

[FFmpeg-devel] [PATCH 1/5] doc/fate: better formatting

2015-03-22 Thread Timothy Gu
The initial spaces get ignored anyway so let's be consistent with other docs. --- doc/fate.texi | 64 +-- 1 file changed, 32 insertions(+), 32 deletions(-) diff --git a/doc/fate.texi b/doc/fate.texi index 73c603c..353443a 100644 ---

[FFmpeg-devel] [PATCH 2/5] Use @verbatim instead of @example for ASCII arts

2015-03-22 Thread Timothy Gu
Partially fixes #3869. --- doc/ffmpeg.texi | 20 ++-- doc/ffserver.texi | 6 -- doc/filters.texi | 4 ++-- 3 files changed, 16 insertions(+), 14 deletions(-) diff --git a/doc/ffmpeg.texi b/doc/ffmpeg.texi index 1dde682..5a979d5 100644 --- a/doc/ffmpeg.texi +++

[FFmpeg-devel] [PATCH 4/5] doc: Use @lisp where appropriate

2015-03-22 Thread Timothy Gu
--- doc/developer.texi | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/developer.texi b/doc/developer.texi index a5e9c99..d9ccf7b 100644 --- a/doc/developer.texi +++ b/doc/developer.texi @@ -228,7 +228,7 @@ autocmd InsertEnter * match ForbiddenWhitespace

[FFmpeg-devel] [PATCH 5/5] doc: Escape all backslashes needed to be escaped

2015-03-22 Thread Timothy Gu
No, I do not want to do this, but a user requested it… I think it is time for us to switch to a better documentation format. Fixes #3867. --- doc/developer.texi | 4 ++-- doc/encoders.texi | 4 ++-- doc/faq.texi | 8 doc/ffmpeg.texi| 4 ++-- doc/filters.texi | 60

[FFmpeg-devel] [PATCH 3/5] doc: More semantic markup using @samp and @var where appropriate

2015-03-22 Thread Timothy Gu
--- doc/ffprobe.texi | 33 + doc/filters.texi | 15 --- doc/metadata.texi | 26 +++--- doc/utils.texi| 10 +- 4 files changed, 45 insertions(+), 39 deletions(-) diff --git a/doc/ffprobe.texi b/doc/ffprobe.texi index

Re: [FFmpeg-devel] [PATCH] [PATCH] lavfi: add inverse telecine filter

2015-03-10 Thread Timothy Gu
On Tue, Mar 10, 2015 at 2:52 PM Himangi Saraogi himangi...@gmail.com wrote: This is an exact inverse of the telecine filter unlike previously existing pullup and fieldmatch ones. What's the difference between the three seemingly similar filters? Timothy

Re: [FFmpeg-devel] [PATCH] sftp: support reading config from ~/.ssh/config

2015-03-10 Thread Timothy Gu
On Tue, Mar 10, 2015 at 5:47 PM Lukasz Marek lukasz.m.lu...@gmail.com wrote: On 11.03.2015 01:13, Florian Jacob wrote: libssh provides a function for parsing ~/.ssh/config for ssh connection parameters like user, hostname, identity file and port. This patch makes ffmpeg use this function to

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

2015-03-09 Thread Timothy Gu
On Mon, Mar 9, 2015 at 4:34 PM Yayoi yayoi.u...@gmail.com wrote: @@ -372,12 +396,26 @@ static int filter_frame(AVFilterLink *link, AVFrame *in) calc_coefficients(ctx); +ThreadData td = { +.src = in, +.dst = out, +.c2 = color-yuv_convert[color-mode][0][1],

Re: [FFmpeg-devel] [PATCH] doc/filters: Add some random examples for fftfilt

2015-03-07 Thread Timothy Gu
On Sat, Mar 7, 2015 at 2:29 PM Michael Niedermayer michae...@gmx.at wrote: Signed-off-by: Michael Niedermayer michae...@gmx.at --- doc/filters.texi | 23 +++ 1 file changed, 23 insertions(+) diff --git a/doc/filters.texi b/doc/filters.texi index b15087c..9149ae5

Re: [FFmpeg-devel] [PATCH 1/2] libavformat/avio: added avio_put_str16be

2015-03-01 Thread Timothy Gu
On Sun, Mar 1, 2015 at 1:31 PM Mark Reid mindm...@gmail.com wrote: --- libavformat/avio.h| 6 ++ libavformat/aviobuf.c | 50 +++--- libavformat/version.h | 2 +- 3 files changed, 34 insertions(+), 24 deletions(-) Also doc/APICHANGES

Re: [FFmpeg-devel] [PATCH] Add coverity model file

2015-02-19 Thread Timothy Gu
On Thu Feb 19 2015 at 4:43:30 AM Michael Niedermayer michae...@gmx.at wrote: tools/model.c | 42 ++ 1 file changed, 42 insertions(+) create mode 100644 tools/model.c tools/coverity.c sounds better to me. Timothy

Re: [FFmpeg-devel] [PATCH 1/2] doc: set documentencoding on toplevel texi files.

2015-02-09 Thread Timothy Gu
On Mon Feb 09 2015 at 9:15:34 AM Michael Niedermayer michae...@gmx.at wrote: On Mon, Feb 09, 2015 at 04:32:10PM +0100, Nicolas George wrote: Fix double UTF-8 encoding on output files. makeinfo / texi2any does not seem to provide a way of setting it globally for toplevel files. True.

Re: [FFmpeg-devel] [PATCH 7/7] atrac3plus: Prevent array out-of-bounds

2015-02-06 Thread Timothy Gu
Actually GCC is too dumb. There is literally no way to fix this in a clean way. Patch dropped. On Fri Feb 06 2015 at 7:57:33 PM Timothy Gu timothyg...@gmail.com wrote: On Fri Feb 06 2015 at 7:55:31 PM Timothy Gu timothyg...@gmail.com wrote: On Fri Feb 06 2015 at 7:44:23 PM Michael Niedermayer

Re: [FFmpeg-devel] [PATCH 7/7] atrac3plus: Prevent array out-of-bounds

2015-02-06 Thread Timothy Gu
On Fri Feb 06 2015 at 7:44:23 PM Michael Niedermayer michae...@gmx.at wrote: On Fri, Feb 06, 2015 at 07:32:56AM +, Timothy Gu wrote: On Thu Feb 05 2015 at 11:07:01 PM Timothy Gu timothyg...@gmail.com wrote: (num_quant_units - 1) is later used as an index to atrac3p_qu_to_subband

[FFmpeg-devel] [PATCH] pixdesc: Include more functions in FF_DISABLE_DEPRECATION_WARNINGS

2015-02-06 Thread Timothy Gu
--- libavutil/pixdesc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavutil/pixdesc.c b/libavutil/pixdesc.c index 648d014..d52e9b6 100644 --- a/libavutil/pixdesc.c +++ b/libavutil/pixdesc.c @@ -2049,7 +2049,6 @@ enum AVPixelFormat av_pix_fmt_desc_get_id(const

Re: [FFmpeg-devel] [PATCH 7/7] atrac3plus: Prevent array out-of-bounds

2015-02-06 Thread Timothy Gu
On Fri Feb 06 2015 at 7:55:31 PM Timothy Gu timothyg...@gmail.com wrote: On Fri Feb 06 2015 at 7:44:23 PM Michael Niedermayer michae...@gmx.at wrote: On Fri, Feb 06, 2015 at 07:32:56AM +, Timothy Gu wrote: On Thu Feb 05 2015 at 11:07:01 PM Timothy Gu timothyg...@gmail.com wrote

Re: [FFmpeg-devel] [PATCH 7/7] atrac3plus: Prevent array out-of-bounds

2015-02-06 Thread Timothy Gu
On Fri Feb 06 2015 at 2:58:19 AM wm4 nfx...@googlemail.com wrote: On Fri, 06 Feb 2015 07:32:56 + Timothy Gu timothyg...@gmail.com wrote: On Thu Feb 05 2015 at 11:07:01 PM Timothy Gu timothyg...@gmail.com wrote: (num_quant_units - 1) is later used as an index

Re: [FFmpeg-devel] [PATCH 1/7] opt: Remove dead code

2015-02-06 Thread Timothy Gu
On Fri Feb 06 2015 at 1:28:09 AM Carl Eugen Hoyos ceho...@ag.or.at wrote: Timothy Gu timothygu99 at gmail.com writes: if (!i || !*val) return 0; } - -return 0; } I fear that some (broken) compilers will emit a warning when this gets applied

Re: [FFmpeg-devel] [PATCHv4] flac: ignore duplicated ID3 tags if vorbis tags exist

2015-02-05 Thread Timothy Gu
On Thu Feb 05 2015 at 7:57:21 PM Ben Boeckel maths...@gmail.com wrote: FLAC doesn't really support ID3 tags, so warn if they are found at all. If vorbis tags are found, toss out duplicate ID3 tags. Fixes #3799. Signed-off-by: Ben Boeckel maths...@gmail.com --- libavformat/flacdec.c | 27

[FFmpeg-devel] [PATCH 2/2] generate_wave_table: Add include for AVSampleFormat

2015-02-05 Thread Timothy Gu
Fixes warning in `make checkheaders`. --- libavfilter/generate_wave_table.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/libavfilter/generate_wave_table.h b/libavfilter/generate_wave_table.h index 37ea2aa..5fe297e 100644 --- a/libavfilter/generate_wave_table.h +++

[FFmpeg-devel] [PATCH 1/7] opt: Remove dead code

2015-02-05 Thread Timothy Gu
--- libavutil/opt.c | 12 1 file changed, 4 insertions(+), 8 deletions(-) diff --git a/libavutil/opt.c b/libavutil/opt.c index c68dacc..45fcf95 100644 --- a/libavutil/opt.c +++ b/libavutil/opt.c @@ -256,8 +256,6 @@ static int set_string_number(void *obj, void *target_obj, const

[FFmpeg-devel] [PATCH 2/7] img2dec: Remove dead code

2015-02-05 Thread Timothy Gu
--- libavformat/img2dec.c | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/libavformat/img2dec.c b/libavformat/img2dec.c index 1ab1309..8c5e9d5 100644 --- a/libavformat/img2dec.c +++ b/libavformat/img2dec.c @@ -599,10 +599,8 @@ static int bmp_probe(AVProbeData *p) if

[FFmpeg-devel] [PATCH 7/7] atrac3plus: Prevent array out-of-bounds

2015-02-05 Thread Timothy Gu
(num_quant_units - 1) is later used as an index to atrac3p_qu_to_subband, which only has 32 elements (i.e. maximum of num_quant_units is 32). --- libavcodec/atrac3plus.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavcodec/atrac3plus.c b/libavcodec/atrac3plus.c index

[FFmpeg-devel] [PATCH 3/7] rtspdec: Remove dead code

2015-02-05 Thread Timothy Gu
--- libavformat/rtspdec.c | 1 - 1 file changed, 1 deletion(-) diff --git a/libavformat/rtspdec.c b/libavformat/rtspdec.c index c899498..5474577 100644 --- a/libavformat/rtspdec.c +++ b/libavformat/rtspdec.c @@ -677,7 +677,6 @@ static int rtsp_listen(AVFormatContext *s) return

[FFmpeg-devel] [PATCH 4/7] rtpproto: Remove dead code

2015-02-05 Thread Timothy Gu
--- libavformat/rtpproto.c | 1 - 1 file changed, 1 deletion(-) diff --git a/libavformat/rtpproto.c b/libavformat/rtpproto.c index b6b8924..59311be 100644 --- a/libavformat/rtpproto.c +++ b/libavformat/rtpproto.c @@ -425,7 +425,6 @@ static int rtp_read(URLContext *h, uint8_t *buf, int size)

[FFmpeg-devel] [PATCH 6/7] nutdec: Remove unused variables

2015-02-05 Thread Timothy Gu
--- libavformat/nutenc.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/libavformat/nutenc.c b/libavformat/nutenc.c index 3146f89..c335e64 100644 --- a/libavformat/nutenc.c +++ b/libavformat/nutenc.c @@ -168,7 +168,6 @@ static void build_frame_code(AVFormatContext *s) int start2 =

Re: [FFmpeg-devel] [PATCH] Revert Autodetect libxcb.

2015-02-05 Thread Timothy Gu
On Thu Feb 05 2015 at 7:55:43 AM Nicolas George geo...@nsup.org wrote: Le sextidi 16 pluviôse, an CCXXIII, Clement Boesch a écrit : Linux is not only used by desktop. Debian (for example) might want to provide a ffmpeg-nox11 (just like vim-nox11), Well, that means they have to put

Re: [FFmpeg-devel] [PATCH] configure: add --build-date and --build-time options

2015-02-01 Thread Timothy Gu
On Sun Feb 01 2015 at 9:01:04 AM Andreas Cadhalpun andreas.cadhal...@googlemail.com wrote: Hi, On 01.02.2015 16:44, Michael Niedermayer wrote: On Sat, Jan 31, 2015 at 11:18:26PM +0100, Andreas Cadhalpun wrote: One can include the git revision in the PROJECT_NUMBER, e.g. with attached

Re: [FFmpeg-devel] [PATCH] doc/indevs/libcdio: apply minor spell fixes, extend documentation

2015-01-30 Thread Timothy Gu
On Fri Jan 30 2015 at 9:32:58 AM Stefano Sabatini stefa...@gmail.com wrote: --- doc/indevs.texi | 32 +--- 1 file changed, 29 insertions(+), 3 deletions(-) diff --git a/doc/indevs.texi b/doc/indevs.texi index fa6facf..85ceae4 100644 --- a/doc/indevs.texi +++

Re: [FFmpeg-devel] [PATCH] configure: add --build-date and --build-time options

2015-01-21 Thread Timothy Gu
On Wed Jan 21 2015 at 2:11:09 PM Andreas Cadhalpun andreas.cadhal...@googlemail.com wrote: Hi, Debian tries to make binary packages build reproducible [1]. FFmpeg embeds date and time in the program and documentation, which makes it hard to have binary reproducible packages. The attached

Re: [FFmpeg-devel] [PATCH] doc/platform: Add build instruction for Windows Runtime

2015-01-10 Thread Timothy Gu
On Sat Jan 10 2015 at 2:07:16 AM Derek Buitenhuis derek.buitenh...@gmail.com wrote: On 1/10/2015 8:43 AM, Timotius Margo wrote: Hi, The attached patch updates the Platform Specific Information with build instruction for Windows Store and Windows Phone 8.1. [...] +@heading MinGW

Re: [FFmpeg-devel] [PATCH] avcodec/libvpxenc.c: Fix linking with codec interface with msvc.

2015-01-10 Thread Timothy Gu
On Sat Jan 10 2015 at 3:28:36 AM Matt Oliver protogo...@gmail.com wrote: This uses the appropriate libvpx accessor function for accessing the codec interface correctly on any platform which correct link errors on windows. LGTM. The accessors have been there since 0.9.5, and we only support

Re: [FFmpeg-devel] [PATCH] Add pkg-config for libfdk_aac

2014-12-31 Thread Timothy Gu
On Wed Dec 31 2014 at 5:11:37 AM Clément Bœsch u...@pkh.me wrote: [1]: there is a glib2 free version of pkg-config @ http://sourceforge.net/projects/pkgconfiglite/files/ Another one (a reimplementation, not just a de-glibed version of pkg-config): https://github.com/pkgconf/pkgconf Timothy

Re: [FFmpeg-devel] [PATCH]Allow libspeex detection also without pkg-config

2014-12-31 Thread Timothy Gu
On Wed Dec 31 2014 at 5:02:28 AM Reimar Döffinger reimar.doeffin...@gmx.de wrote: I don't care much, but I still find not having to use pkg-config somewhat more convenient in a cross-compilation environment where you don't want to install all dependencies just to make it work with pkg-config

Re: [FFmpeg-devel] [PATCH]Allow libspeex detection also without pkg-config

2014-12-31 Thread Timothy Gu
On Wed Dec 31 2014 at 10:01:38 AM Reimar Döffinger reimar.doeffin...@gmx.de wrote: Interestingly, the --pkg-config=/bin/true workaround needs you to be careful to actually put libraries in --extra-libs, not --extra-ldflags or the check will fail for static libraries, which is not completely

Re: [FFmpeg-devel] [PATCH 07/15] vp8/x86: move variable assigned inside macro branch.

2014-12-27 Thread Timothy Gu
On Saturday, December 27, 2014, Ronald S. Bultje rsbul...@gmail.com wrote: The value is not used outside the branch. --- libavcodec/x86/vp9lpf.asm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) Is this the right patch? Timothy ___

Re: [FFmpeg-devel] [PATCH] libavfilter/af_showvolume: A Simple Audio Filter for Extracting Volume Information

2014-12-22 Thread Timothy Gu
On Mon Dec 22 2014 at 7:51:10 AM Lars Kiesow lkie...@uos.de wrote: Hi everyone, I'm an FFmpeg user for quite a while now and though I might as well switch to dev at some point... Please find attached to this mail a simple audio filter which makes it possible to extract and print volume

Re: [FFmpeg-devel] [PATCH] lavfi: Port fspp to FFmpeg

2014-12-18 Thread Timothy Gu
On Dec 18, 2014 10:31 PM, arwa arif arwaarif1...@gmail.com wrote: On Fri, Dec 19, 2014 at 10:40 AM, Michael Niedermayer michae...@gmx.at wrote: it segfaults without -cpuflags 0 here ./ffplay -i matrixbench_mpeg2.mpg -vf fspp I tried this command on my system, and it is not giving

Re: [FFmpeg-devel] [PATCH] web: Update Bower dependencies

2014-12-04 Thread Timothy Gu
On Thu, Dec 4, 2014 at 4:22 AM, Michael Niedermayer michae...@gmx.at wrote: On Wed, Dec 03, 2014 at 08:56:11PM -0800, Timothy Gu wrote: On Tue, Nov 25, 2014 at 7:50 PM, Timothy Gu timothyg...@gmail.com wrote: Also explicitly add jQuery as a dependency. It is copied from the Makefile

Re: [FFmpeg-devel] [PATCH] web: Update Bower dependencies

2014-12-04 Thread Timothy Gu
On Thu, Dec 4, 2014 at 9:07 AM, db0 company db0comp...@gmail.com wrote: Did you check that the latest versions of the dependencies still make the website look the same? I did, and it's OK. Timothy ___ ffmpeg-devel mailing list ffmpeg-devel@ffmpeg.org

Re: [FFmpeg-devel] [PATCH 2/2] fate: add libavcodec/options-test

2014-12-03 Thread Timothy Gu
On Wed, Dec 3, 2014 at 3:50 PM, Lukasz Marek lukasz.m.lu...@gmail.com wrote: Signed-off-by: Lukasz Marek lukasz.m.lu...@gmail.com --- tests/fate/libavcodec.mak | 4 + tests/ref/fate/libavcodec-options | 161 ++ 2 files changed, 165

Re: [FFmpeg-devel] [PATCH 2/2] fate: add libavcodec/options-test

2014-12-03 Thread Timothy Gu
On Wed, Dec 3, 2014 at 4:05 PM, Lukasz Marek lukasz.m.lu...@gmail.com wrote: On 04.12.2014 01:01, Timothy Gu wrote: On Wed, Dec 3, 2014 at 3:50 PM, Lukasz Marek lukasz.m.lu...@gmail.com wrote: Signed-off-by: Lukasz Marek lukasz.m.lu...@gmail.com --- tests/fate/libavcodec.mak

[FFmpeg-devel] [2.5] [PATCH 1/2] Changelog/RELEASE_NOTES: Add APNG decoder

2014-12-03 Thread Timothy Gu
Signed-off-by: Timothy Gu timothyg...@gmail.com --- Changelog | 2 +- RELEASE_NOTES | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/Changelog b/Changelog index 0130ca8..7187a15 100644 --- a/Changelog +++ b/Changelog @@ -16,7 +16,7 @@ version 2.5: - creating DASH

[FFmpeg-devel] [PATCH 1/2] RELEASE_NOTES: Reset after release

2014-12-03 Thread Timothy Gu
Signed-off-by: Timothy Gu timothyg...@gmail.com --- RELEASE_NOTES | 61 ++- 1 file changed, 27 insertions(+), 34 deletions(-) diff --git a/RELEASE_NOTES b/RELEASE_NOTES index a1ddd35..adcab42 100644 --- a/RELEASE_NOTES +++ b/RELEASE_NOTES

[FFmpeg-devel] [PATCH 2/2] RELEASE: Bump

2014-12-03 Thread Timothy Gu
Signed-off-by: Timothy Gu timothyg...@gmail.com --- RELEASE | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/RELEASE b/RELEASE index 5360d2e..5db7a1a 100644 --- a/RELEASE +++ b/RELEASE @@ -1 +1 @@ -2.4.git +2.5.git -- 1.9.1

<    1   2   3   4   5   6   >