[FFmpeg-devel] [PATCH 1/2] [WIP/RFC] Add a release note for 2.3

2014-07-11 Thread Timothy Gu
Based on a patch by Clément Bœsch u...@pkh.me. Signed-off-by: Timothy Gu timothyg...@gmail.com --- So, I rebased Clément's original patch and added (a lot) more stuff to make it a real official modern-looking release note. Some stuff I am not sure about: - Should we use Clément's format

[FFmpeg-devel] [PATCH 2/2] [RFC] Move old Changelog entries to doc/Changelog.old

2014-07-11 Thread Timothy Gu
Signed-off-by: Timothy Gu timothyg...@gmail.com --- Changelog = doc/Changelog.old | 33 - 1 file changed, 33 deletions(-) rename Changelog = doc/Changelog.old (97%) diff --git a/Changelog b/doc/Changelog.old similarity index 97% rename from Changelog rename

Re: [FFmpeg-devel] [PATCH 1/4] swr: convert resample_common/linear_int16_mmx2/sse2 to yasm.

2014-07-12 Thread Timothy Gu
On Sat, Jul 12, 2014 at 8:35 AM, Hendrik Leppkes h.lepp...@gmail.com wrote: On Sat, Jul 12, 2014 at 4:45 PM, Andreas Cadhalpun andreas.cadhal...@googlemail.com wrote: On 12.07.2014 15:40, Ronald S. Bultje wrote: Hi, On Sat, Jul 12, 2014 at 9:35 AM, Andreas Cadhalpun

Re: [FFmpeg-devel] [PATCH] fix spelling errors

2014-07-12 Thread Timothy Gu
On Jul 12, 2014 1:15 PM, Andreas Cadhalpun andreas.cadhal...@googlemail.com wrote: On 12.07.2014 21:56, Timothy Gu wrote: On Jul 12, 2014 12:28 PM, Andreas Cadhalpun andreas.cadhal...@googlemail.com wrote: Hi, attached patch fixes some spelling errors found with codespell. Please

[FFmpeg-devel] [PATCH] Add a release note for 2.3

2014-07-13 Thread Timothy Gu
Based on a patch by Clément Bœsch u...@pkh.me. Signed-off-by: Timothy Gu timothyg...@gmail.com --- Moved API info up per IRC --- RELEASE_NOTES | 172 ++ 1 file changed, 172 insertions(+) create mode 100644 RELEASE_NOTES diff --git

[FFmpeg-devel] [PATCH] RELEASE_NOTES: Mention Libav and add codename

2014-07-14 Thread Timothy Gu
Signed-off-by: Timothy Gu timothyg...@gmail.com --- RELEASE_NOTES | 21 +++-- 1 file changed, 11 insertions(+), 10 deletions(-) diff --git a/RELEASE_NOTES b/RELEASE_NOTES index ef773a8..349995f 100644 --- a/RELEASE_NOTES +++ b/RELEASE_NOTES @@ -1,15 +1,15

[FFmpeg-devel] [PATCH 2/2] Rebase commit 'web/download: remove developer repos and cleanup'

2014-07-15 Thread Timothy Gu
Commit cb17d7339c2a12d8bb36d3000f229d924e092d0c rebased Signed-off-by: Timothy Gu timothyg...@gmail.com --- src/download | 205 --- 1 file changed, 27 insertions(+), 178 deletions(-) diff --git a/src/download b/src/download index 3ccbb3d

[FFmpeg-devel] [PATCH 0/2] Incremental patches for some small improvments

2014-07-15 Thread Timothy Gu
This patch series is also available at https://github.com/db0company/web/pull/1 , which also includes a commit that regenerates dist/ Timothy Gu (2): Make W3C validator happy Rebase commit 'web/download: remove developer repos and cleanup' src/about| 8 +- src/bugreports

[FFmpeg-devel] [PATCH 1/2] Make W3C validator happy

2014-07-15 Thread Timothy Gu
Signed-off-by: Timothy Gu timothyg...@gmail.com --- src/about| 8 src/bugreports | 8 src/download | 6 ++ src/index| 4 ++-- src/template_footer1 | 2 +- src/template_head1 | 1 - 6 files changed, 13 insertions(+), 16 deletions

Re: [FFmpeg-devel] [PATCH] Move old Changelog entries to doc/Changelog.old

2014-07-15 Thread Timothy Gu
On Tue, Jul 15, 2014 at 2:56 PM, James Almer jamr...@gmail.com wrote: On 15/07/14 6:52 PM, Michael Niedermayer wrote: On Sun, Jul 13, 2014 at 07:15:04PM -0700, Timothy Gu wrote: Signed-off-by: Timothy Gu timothyg...@gmail.com --- Here is the right patch... Changelog | 1264

[FFmpeg-devel] [PATCH 2/3] vp9: remove unused assignment

2014-07-15 Thread Timothy Gu
Signed-off-by: Timothy Gu timothyg...@gmail.com --- Already OK'd by BBB on IRC: 19:04 BBB the first two seem correct 19:04 BBB yeah they’re all correct 19:05 BBB Timothy_Gu_: patch to remove these is fine --- libavcodec/vp9.c | 3 --- 1 file changed, 3 deletions(-) diff --git a/libavcodec/vp9

[FFmpeg-devel] [PATCH] oss_audio: check all ioctl() return codes

2014-07-17 Thread Timothy Gu
Also uses a macro to simplify. Signed-off-by: Timothy Gu timothyg...@gmail.com --- Found with clang's static analyzer. --- libavdevice/oss_audio.c | 23 +++ 1 file changed, 11 insertions(+), 12 deletions(-) diff --git a/libavdevice/oss_audio.c b/libavdevice/oss_audio.c

[FFmpeg-devel] [PATCH 1/2] proresenc_anatoliy: use tables in proresdata.c instead of redefining them

2014-07-17 Thread Timothy Gu
Signed-off-by: Timothy Gu timothyg...@gmail.com --- libavcodec/Makefile | 4 ++-- libavcodec/proresenc_anatoliy.c | 43 ++--- 2 files changed, 16 insertions(+), 31 deletions(-) diff --git a/libavcodec/Makefile b/libavcodec/Makefile index 307ad22

[FFmpeg-devel] [PATCH 2/2] proresenc: move profile handling to global avcodec options

2014-07-17 Thread Timothy Gu
This allows users to use the two encoders with the same syntax. Signed-off-by: Timothy Gu timothyg...@gmail.com --- libavcodec/avcodec.h| 5 + libavcodec/options_table.h | 5 + libavcodec/proresenc_anatoliy.c | 5 - libavcodec/proresenc_kostya.c | 44

[FFmpeg-devel] [PATCH] hevc: propagate error code from set_sps()

2014-07-17 Thread Timothy Gu
Signed-off-by: Timothy Gu timothyg...@gmail.com --- libavcodec/hevc.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/libavcodec/hevc.c b/libavcodec/hevc.c index afb2baa..d3108d7 100644 --- a/libavcodec/hevc.c +++ b/libavcodec/hevc.c @@ -3299,7 +3299,8 @@ static int

[FFmpeg-devel] [PATCH 3/4] smacker: remove dead code

2014-07-17 Thread Timothy Gu
Signed-off-by: Timothy Gu timothyg...@gmail.com --- libavcodec/smacker.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/libavcodec/smacker.c b/libavcodec/smacker.c index 644beb3..518bdad 100644 --- a/libavcodec/smacker.c +++ b/libavcodec/smacker.c @@ -438,7 +438,6 @@ static int decode_frame

[FFmpeg-devel] [PATCH 2/4] kerndeint: remove dead assignments

2014-07-17 Thread Timothy Gu
Signed-off-by: Timothy Gu timothyg...@gmail.com --- libavfilter/vf_kerndeint.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libavfilter/vf_kerndeint.c b/libavfilter/vf_kerndeint.c index 1f8e091..5130208 100644 --- a/libavfilter/vf_kerndeint.c +++ b/libavfilter

[FFmpeg-devel] [PATCH 1/4] mpeg: remove unused assignment

2014-07-17 Thread Timothy Gu
Signed-off-by: Timothy Gu timothyg...@gmail.com --- libavformat/mpeg.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavformat/mpeg.c b/libavformat/mpeg.c index c53bab3..5891cea 100644 --- a/libavformat/mpeg.c +++ b/libavformat/mpeg.c @@ -204,8 +204,8 @@ static long

[FFmpeg-devel] [PATCH 4/4] a64multienc: remove dead assignment

2014-07-17 Thread Timothy Gu
Signed-off-by: Timothy Gu timothyg...@gmail.com --- libavcodec/a64multienc.c | 1 - 1 file changed, 1 deletion(-) diff --git a/libavcodec/a64multienc.c b/libavcodec/a64multienc.c index 3067774..9760298 100644 --- a/libavcodec/a64multienc.c +++ b/libavcodec/a64multienc.c @@ -351,7 +351,6

[FFmpeg-devel] [PATCH 1/2] Use makeinfo to generate html doc for the new website

2014-07-19 Thread Timothy Gu
. But as makeinfo and texi2html adopt 2 (very) different init file syntaxes, it is easier to do the two transitions at once. Based on a patch by Andreas Cadhalpun andreas.cadhal...@googlemail.com. Fixes Trac ticket #3232. Signed-off-by: Timothy Gu timothyg...@gmail.com --- configure

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

2014-07-23 Thread Timothy Gu
On Sun, Jul 20, 2014 at 2:26 PM, Timothy Gu timothyg...@gmail.com wrote: texi2html is deprecated by upstream in favor of makeinfo/texi2any. See: - https://www.gnu.org/software/texinfo/manual/texinfo/html_node/texi2html.html - https://wiki.debian.org/Texi2htmlTransition - https

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

2014-07-24 Thread Timothy Gu
On Jul 23, 2014 7:44 PM, Michael Niedermayer michae...@gmx.at wrote: On Wed, Jul 23, 2014 at 05:20:10PM -0700, Timothy Gu wrote: On Sun, Jul 20, 2014 at 2:26 PM, Timothy Gu timothyg...@gmail.com wrote: texi2html is deprecated by upstream in favor of makeinfo/texi2any. See: - https

Re: [FFmpeg-devel] [PATCH] doc/decoders: mention native Opus decoder

2014-07-27 Thread Timothy Gu
On Sun, Jul 27, 2014 at 1:48 PM, Lou Logan l...@lrcd.com wrote: Signed-off-by: Lou Logan l...@lrcd.com --- doc/decoders.texi | 3 +++ 1 file changed, 3 insertions(+) OK. [...] Timothy ___ ffmpeg-devel mailing list ffmpeg-devel@ffmpeg.org

Re: [FFmpeg-devel] [PATCH] doc/ffserver: merge paragraph starting with What happens next? with previous one

2014-08-02 Thread Timothy Gu
On Aug 2, 2014 7:40 AM, Stefano Sabatini stefa...@gmail.com wrote: The name of the paragraph sounded a bit silly, and its text is small so it's better to merge it with the previous paragraph. --- doc/ffserver.texi | 8 +++- 1 file changed, 3 insertions(+), 5 deletions(-) OK. [...]

Re: [FFmpeg-devel] [PATCH] lavfi/avf_showspectrum: check RDFT contet init.

2014-08-03 Thread Timothy Gu
On Sun, Aug 3, 2014 at 11:40 AM, Nicolas George geo...@nsup.org wrote: Fix a segfault with large window size. Signed-off-by: Nicolas George geo...@nsup.org --- libavfilter/avf_showspectrum.c | 5 + 1 file changed, 5 insertions(+) diff --git a/libavfilter/avf_showspectrum.c

Re: [FFmpeg-devel] [PATCH] avfilter/dctdnoiz: rewrite [f/i]dct

2014-08-03 Thread Timothy Gu
On Aug 3, 2014 1:27 PM, Clément Bœsch u...@pkh.me wrote: This removes the avcodec dependency and make the code almost twice as fast. More to come. The DCT factorization is based on Fast and numerically stable algorithms for discrete cosine transforms from Gerlind Plonkaa Manfred Tasche

[FFmpeg-devel] [PATCH] transcode_aac: fix const return value

2014-08-05 Thread Timothy Gu
Fixes Trac #3613. Signed-off-by: Timothy Gu timothyg...@gmail.com --- doc/examples/transcode_aac.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/examples/transcode_aac.c b/doc/examples/transcode_aac.c index bf0128f..cee447f 100644 --- a/doc/examples/transcode_aac.c

Re: [FFmpeg-devel] [PATCH] check that reel_name length doesn't exceed UINT16_MAX

2014-08-10 Thread Timothy Gu
On Sun, Aug 10, 2014 at 12:01 PM, Mark Reid mindm...@gmail.com wrote: --- libavformat/movenc.c | 14 +++--- 1 file changed, 11 insertions(+), 3 deletions(-) diff --git a/libavformat/movenc.c b/libavformat/movenc.c index 6a38e89..85fb2e8 100644 --- a/libavformat/movenc.c +++

Re: [FFmpeg-devel] [PATCH] added ULs for demuxing avid media composer mxf files

2014-08-12 Thread Timothy Gu
On Aug 12, 2014 6:29 PM, Mark Reid mindm...@gmail.com wrote: I didn't realize FFmbc was licensed differently :s. I don't know if it helps, (IANAL either) but the same ULs can be found in libMXF project, as well as the AAF SDK. I'm not sure how to proceed, should I just drop the patch? Just

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

2014-08-12 Thread Timothy Gu
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? [...] Timothy ___ ffmpeg-devel mailing list ffmpeg-devel@ffmpeg.org http://ffmpeg.org/mailman/listinfo/ffmpeg-devel

Re: [FFmpeg-devel] [PATCH] doc/filters: correct confusing statements about *showinfo shown values

2014-08-13 Thread Timothy Gu
On Aug 13, 2014 8:58 AM, Stefano Sabatini stefa...@gmail.com wrote: Fix trac issue #3850. --- OK. [...] Timothy ___ ffmpeg-devel mailing list ffmpeg-devel@ffmpeg.org http://ffmpeg.org/mailman/listinfo/ffmpeg-devel

[FFmpeg-devel] [PATCH 1/3] vidstab*: Remove accidentally exported av_2_vs_pixel_format()

2014-08-16 Thread Timothy Gu
Also correctly namespace other functions in vidstabutils, and decrease difference from Libav. Initial-patch-by: Vittorio Giovara vittorio.giov...@gmail.com Signed-off-by: Timothy Gu timothyg...@gmail.com --- Does this need an FF_API_VIDSTAB? doc/APIchanges| 4

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

2014-08-16 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

[FFmpeg-devel] [PATCH 3/3] vidstabutils: fix indentation

2014-08-16 Thread Timothy Gu
Signed-off-by: Timothy Gu timothyg...@gmail.com --- libavfilter/vidstabutils.c | 10 +- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/libavfilter/vidstabutils.c b/libavfilter/vidstabutils.c index 1f9f331..13544cf 100644 --- a/libavfilter/vidstabutils.c +++ b/libavfilter

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

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] 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] 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

[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] [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

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 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] 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] 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] 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] 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] 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] [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] 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] [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] 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] 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 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] [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/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] [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] 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] 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] 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] 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] [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] [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] [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] [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] 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] 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] 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] [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

  1   2   3   4   5   6   >