Re: [FFmpeg-devel] [PATCH] doc/ffmpeg mention both ffpreset/avpreset in documentation, remove superfluous example

2015-01-01 Thread Michael Niedermayer
On Thu, Jan 01, 2015 at 10:08:34PM +0100, Werner Robitza wrote: > ffmpeg looks for both .ffpreset and .avpreset files in addition to > checking the FFMPEG_DATADIR and AVCONV_DATADIR. > > Added a paragraph explaining that both are included for compatibility > reasons. > > Removed a superfluous sec

[FFmpeg-devel] [PATCH] doc/ffmpeg mention both ffpreset/avpreset in documentation, remove superfluous example

2015-01-01 Thread Werner Robitza
ffmpeg looks for both .ffpreset and .avpreset files in addition to checking the FFMPEG_DATADIR and AVCONV_DATADIR. Added a paragraph explaining that both are included for compatibility reasons. Removed a superfluous section from "Examples" (7.1) which mentioned AVCONV_DATADIR and .avpreset. It wa

Re: [FFmpeg-devel] [PATCH] doc/ffmpeg: fix suffix of preset files

2015-01-01 Thread Werner Robitza
On Thu, Jan 1, 2015 at 9:14 PM, Michael Niedermayer wrote: > i hope our docs are correct, we do support avpreset & AVCONV_DATADIR > as well for compatibility with libav I see, thanks. Then it should probably mention both. I'll send a new patch. ___ ffmp

Re: [FFmpeg-devel] [PATCH] doc/ffmpeg: fix suffix of preset files

2015-01-01 Thread Michael Niedermayer
On Wed, Dec 31, 2014 at 10:09:30PM +0100, Werner Robitza wrote: > Probably something from Libav that got carried over. ffmpeg uses .ffpreset > files instead of .avpreset, and it uses $FFMPEG_DATADIR instead of > $AVCONV_DATADIR. > > Signed-off-by: Werner Robitza > --- > doc/ffmpeg.texi | 6 +++--

[FFmpeg-devel] [PATCH] web/contact: Suggest that patch authors subscribe to ffmpeg-devel

2015-01-01 Thread Michael Niedermayer
--- src/contact |3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/contact b/src/contact index 130addf..7233806 100644 --- a/src/contact +++ b/src/contact @@ -35,7 +35,8 @@ https://lists.ffmpeg.org/mailman/listinfo/ffmpeg-devel/";> ffmpeg-devel

Re: [FFmpeg-devel] [PATCH 1/4] ffplay: remove flushed state from decoder context

2015-01-01 Thread Michael Niedermayer
On Thu, Jan 01, 2015 at 02:56:26PM +0100, Marton Balint wrote: > > On Sat, 27 Dec 2014, Michael Niedermayer wrote: > > >On Thu, Dec 25, 2014 at 07:57:02PM +0100, Marton Balint wrote: > >>Signed-off-by: Marton Balint > >>--- > >> ffplay.c | 4 > >> 1 file changed, 4 deletions(-) > > > >LGTM >

Re: [FFmpeg-devel] [PATCH] avcodec/utils/avpriv_find_start_code: optimization. If HAVE_FAST_UNALIGNED is true, handle "1 + sizeof(long)" bytes per step.

2015-01-01 Thread Michael Niedermayer
On Fri, Jan 02, 2015 at 01:27:51AM +0800, zhaoxiu.zeng wrote: > 在 2015/1/1 11:49, Michael Niedermayer 写道: > > On Thu, Jan 01, 2015 at 10:13:58AM +0800, zhaoxiu.zeng wrote: > >> libavcodec/utils.c | 68 > >> -- > >> 1 file changed, 56 insertions(

Re: [FFmpeg-devel] [PATCH] avcodec/utils/avpriv_find_start_code: optimization. If HAVE_FAST_UNALIGNED is true, handle "1 + sizeof(long)" bytes per step.

2015-01-01 Thread zhaoxiu.zeng
在 2015/1/1 11:49, Michael Niedermayer 写道: > On Thu, Jan 01, 2015 at 10:13:58AM +0800, zhaoxiu.zeng wrote: >> libavcodec/utils.c | 68 >> -- >> 1 file changed, 56 insertions(+), 12 deletions(-) >> >> diff --git a/libavcodec/utils.c b/libavcodec/u

Re: [FFmpeg-devel] [PATCH 1/4] ffplay: remove flushed state from decoder context

2015-01-01 Thread Marton Balint
On Sat, 27 Dec 2014, Michael Niedermayer wrote: On Thu, Dec 25, 2014 at 07:57:02PM +0100, Marton Balint wrote: Signed-off-by: Marton Balint --- ffplay.c | 4 1 file changed, 4 deletions(-) LGTM Hello Michael, Please merge from my stable branch for the ffplay patch series: 8c1f5fb

Re: [FFmpeg-devel] [PATCH] configure: Factor out some pkg-config hacks.

2015-01-01 Thread Reimar Döffinger
On 01.01.2015, at 12:49, Clément Bœsch wrote: > On Thu, Jan 01, 2015 at 12:43:52PM +0100, Reimar Döffinger wrote: >> On 01.01.2015, at 12:04, Clément Bœsch wrote: >>> On Thu, Jan 01, 2015 at 11:40:25AM +0100, Reimar Döffinger wrote: +enabled libx264 && use_pkg_config x264 "st

Re: [FFmpeg-devel] [PATCH] configure: Factor out some pkg-config hacks.

2015-01-01 Thread Clément Bœsch
On Thu, Jan 01, 2015 at 12:43:52PM +0100, Reimar Döffinger wrote: > On 01.01.2015, at 12:04, Clément Bœsch wrote: > > On Thu, Jan 01, 2015 at 11:40:25AM +0100, Reimar Döffinger wrote: > >> > >> +enabled libx264 && use_pkg_config x264 "stdint.h x264.h" > >> x264_encoder_encode -lx264 &&

Re: [FFmpeg-devel] [PATCH] configure: Factor out some pkg-config hacks.

2015-01-01 Thread Reimar Döffinger
On 01.01.2015, at 12:04, Clément Bœsch wrote: > On Thu, Jan 01, 2015 at 11:40:25AM +0100, Reimar Döffinger wrote: >> >> +enabled libx264 && use_pkg_config x264 "stdint.h x264.h" >> x264_encoder_encode -lx264 && >> { check_cpp_condition x264.h "X264_BUILD >=

Re: [FFmpeg-devel] [PATCH] configure: Factor out some pkg-config hacks.

2015-01-01 Thread Clément Bœsch
On Thu, Jan 01, 2015 at 11:40:25AM +0100, Reimar Döffinger wrote: > Make require_pkg_config check for extra argument that should not be > there. > Change use_pkg_config to allow specifying fallback libs and cflags. > > Signed-off-by: Reimar Döffinger > --- > configure | 22 +++---

[FFmpeg-devel] [PATCH] configure: Factor out some pkg-config hacks.

2015-01-01 Thread Reimar Döffinger
Make require_pkg_config check for extra argument that should not be there. Change use_pkg_config to allow specifying fallback libs and cflags. Signed-off-by: Reimar Döffinger --- configure | 22 +++--- 1 file changed, 15 insertions(+), 7 deletions(-) diff --git a/configure b/con

[FFmpeg-devel] [PATCH] configure: Factor out some pkg-config hacks.

2015-01-01 Thread Reimar Döffinger
Make require_pkg_config check for extra argument that should not be there. Change use_pkg_config to allow specifying fallback libs and cflags. Signed-off-by: Reimar Döffinger --- configure | 21 ++--- 1 file changed, 14 insertions(+), 7 deletions(-) diff --git a/configure b/conf

Re: [FFmpeg-devel] [PATCH] Changelog: Add cropdetect non 8bpp

2015-01-01 Thread Reimar Döffinger
On Thu, Jan 01, 2015 at 03:34:15AM +0100, Michael Niedermayer wrote: > Suggested-by: Reimar > Signed-off-by: Michael Niedermayer > --- > Changelog |1 + > 1 file changed, 1 insertion(+) > > diff --git a/Changelog b/Changelog > index 37ce0f0..e9d8355 100644 > --- a/Changelog > +++ b/Changelog

[FFmpeg-devel] [PATCH] configure: fix --cross-prefix/--toolchain-prefix to work with --toolchain.

2015-01-01 Thread Reimar Döffinger
Before the prefix was silently dropped if --toolchain was specified. Signed-off-by: Reimar Döffinger --- configure | 36 ++-- 1 file changed, 18 insertions(+), 18 deletions(-) diff --git a/configure b/configure index 5c1cbca..1aaadd4 100755 --- a/configure +++ b/

[FFmpeg-devel] [PATCH] configure: Add toolchain-prefix option.

2015-01-01 Thread Reimar Döffinger
Useful to select e.g. between mingw32, 32-bit mingw64 and 64-bit mingw64 toolchains, which all are not cross-compilation toolchains. Signed-off-by: Reimar Döffinger --- configure | 8 1 file changed, 8 insertions(+) diff --git a/configure b/configure index 9085200..5c1cbca 100755 --- a