Re: [libav-devel] [PATCH] doc: mention option to mix shared/static libraries

2014-07-09 Thread Diego Biurrun
On Tue, Jul 08, 2014 at 09:41:54PM -0400, Vittorio Giovara wrote: --- a/doc/platform.texi +++ b/doc/platform.texi @@ -24,6 +24,17 @@ If not, then you should install a different compiler that has no +@section Advanced linking configuration + +If you compiled Libav libraries statically,

[libav-devel] [PATCH 1/2] avformat: update muxing doxy

2014-07-09 Thread Anton Khirnov
The callers should now set the stream timebase, not the codec one. --- libavformat/avformat.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/libavformat/avformat.h b/libavformat/avformat.h index ac4cd31..b3ccfe5 100644 --- a/libavformat/avformat.h +++

[libav-devel] [PATCH 2/2] avconv: set the output stream timebase

2014-07-09 Thread Anton Khirnov
This is required by the new API. --- avconv.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/avconv.c b/avconv.c index 13968da..0ee7628 100644 --- a/avconv.c +++ b/avconv.c @@ -1972,6 +1972,8 @@ static int transcode_init(void) Error initializing the output stream codec

Re: [libav-devel] [PATCH 1/2] avformat: update muxing doxy

2014-07-09 Thread Luca Barbato
On 09/07/14 12:48, Anton Khirnov wrote: The callers should now set the stream timebase, not the codec one. --- libavformat/avformat.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) Set Ok. ___ libav-devel mailing list

[libav-devel] [PATCH] dsputil: Split off pixel block routines into their own context

2014-07-09 Thread Diego Biurrun
--- Name changed according to Anton and Kostya's suggestion. configure | 13 +- libavcodec/Makefile| 1 + libavcodec/arm/Makefile| 2 + libavcodec/arm/dsputil_armv6.S |

Re: [libav-devel] [PATCH 3/8] oggparsecelt: do not set AVCodecContext.frame_size

2014-07-09 Thread Anton Khirnov
On Sat, 05 Jul 2014 12:52:48 -0400, Justin Ruggles justin.rugg...@gmail.com wrote: On 07/05/2014 05:51 AM, Martin Storsj� wrote: On Sat, 5 Jul 2014, Anton Khirnov wrote: It is supposed to be set by decoders only. --- libavformat/oggparsecelt.c | 4 +--- 1 file changed, 1

Re: [libav-devel] [PATCH 7/8] yuv4mpegenc: do not access AVCodecContext.coded_frame

2014-07-09 Thread Anton Khirnov
On Mon, 7 Jul 2014 16:28:46 -0400, Vittorio Giovara vittorio.giov...@gmail.com wrote: On Sat, Jul 5, 2014 at 5:20 AM, Anton Khirnov an...@khirnov.net wrote: Its contents are meaningful only if the stream codec context is the one actually used for encoding, which is often not the case (and

Re: [libav-devel] [PATCH] h264: parse display orientation SEI message

2014-07-09 Thread Anton Khirnov
On Wed, 2 Jul 2014 11:58:19 -0400, Vittorio Giovara vittorio.giov...@gmail.com wrote: --- libavcodec/h264.c | 15 +++ libavcodec/h264.h | 8 libavcodec/h264_sei.c | 22 ++ 3 files changed, 45 insertions(+) LGTM -- Anton Khirnov

Re: [libav-devel] [PATCH] hevc: parse display orientation SEI message

2014-07-09 Thread Anton Khirnov
On Wed, 2 Jul 2014 12:02:15 -0400, Vittorio Giovara vittorio.giov...@gmail.com wrote: --- libavcodec/hevc.c | 15 +++ libavcodec/hevc.h | 5 + libavcodec/hevc_sei.c | 17 + 3 files changed, 37 insertions(+) LGTM -- Anton Khirnov

[libav-devel] [PATCH 1/6] dsputil: Drop unused bit_depth parameter from all init functions

2014-07-09 Thread Diego Biurrun
--- libavcodec/arm/dsputil_arm.h| 3 +-- libavcodec/arm/dsputil_init_arm.c | 5 ++--- libavcodec/arm/dsputil_init_armv6.c | 3 +-- libavcodec/dsputil.c| 8 +++- libavcodec/dsputil.h| 9 +++-- libavcodec/ppc/dsputil_altivec.c| 3 +--

[libav-devel] motion estimation compare dsputil split

2014-07-09 Thread Diego Biurrun
I decided to split the last patch in the dsputil series as that makes the actual dsputil-related changes fr easier to review. Coalescing the init files makes sense as they were multiple files when dsputil was still a huge monolithic beast. Now that me_cmp is all that remains multiple files

[libav-devel] [PATCH 3/6] arm: dsputil: Coalesce all init files

2014-07-09 Thread Diego Biurrun
--- libavcodec/arm/Makefile | 3 +-- libavcodec/arm/dsputil_arm.h| 29 libavcodec/arm/dsputil_init_arm.c | 33 ++- libavcodec/arm/dsputil_init_armv6.c | 54 - 4 files changed, 28 insertions(+), 91

[libav-devel] [PATCH 5/6] x86: dsputil: Coalesce all init files

2014-07-09 Thread Diego Biurrun
--- libavcodec/x86/Makefile | 3 +- libavcodec/x86/dsputil_init.c | 451 +- libavcodec/x86/dsputil_x86.h | 32 --- libavcodec/x86/motion_est.c | 487 -- 4 files changed, 447 insertions(+), 526 deletions(-)

[libav-devel] [PATCH] adpcmenc: allow to force a certain blocksize when encoding, ADPCM

2014-07-09 Thread Vladimir Pantelic
$subject From 3daffc80be7e112e92844791a07c5e5e82365b4f Mon Sep 17 00:00:00 2001 From: Vladimir Pantelic vlado...@gmail.com Date: Wed, 9 Jul 2014 14:38:26 +0200 Subject: [PATCH] adpcmenc: allow to force a certain blocksize when encoding ADPCM Signed-off-by: Vladimir Pantelic vlado...@gmail.com

Re: [libav-devel] [PATCH] dsputil: Split off pixel block routines into their own context

2014-07-09 Thread Anton Khirnov
On Wed, 9 Jul 2014 06:32:12 -0700, Diego Biurrun di...@biurrun.de wrote: --- Name changed according to Anton and Kostya's suggestion. configure | 13 +- libavcodec/Makefile| 1 + libavcodec/arm/Makefile

Re: [libav-devel] [PATCH] dsputil: Split off pixel block routines into their own context

2014-07-09 Thread Diego Biurrun
On Wed, Jul 09, 2014 at 04:28:25PM +0200, Anton Khirnov wrote: On Wed, 9 Jul 2014 06:32:12 -0700, Diego Biurrun di...@biurrun.de wrote: --- /dev/null +++ b/libavcodec/x86/pixblockdsp.asm @@ -0,0 +1,110 @@ +;*

Re: [libav-devel] [PATCH] adpcmenc: allow to force a certain blocksize when encoding, ADPCM

2014-07-09 Thread Luca Barbato
On 09/07/14 16:26, Vladimir Pantelic wrote: $subject Looks fine to me, Justin? lu ___ libav-devel mailing list libav-devel@libav.org https://lists.libav.org/mailman/listinfo/libav-devel

Re: [libav-devel] [PATCH] adpcmenc: allow to force a certain blocksize when encoding, ADPCM

2014-07-09 Thread Justin Ruggles
On 07/09/2014 10:26 AM, Vladimir Pantelic wrote: $subject ___ libav-devel mailing list libav-devel@libav.org https://lists.libav.org/mailman/listinfo/libav-devel Fine with me as long as FATE still passes -Justin

[libav-devel] [PATCH] libavformat: use MSG_NOSIGNAL when applicable

2014-07-09 Thread Rémi Denis-Courmont
If the remote end of a connection oriented socket hangs up, generating an EPIPE error is preferable over an unhandled SIGPIPE signal. --- libavformat/sctp.c | 4 ++-- libavformat/tcp.c | 4 libavformat/unix.c | 2 +- 3 files changed, 7 insertions(+), 3 deletions(-) diff --git

Re: [libav-devel] [PATCH] libavformat: use MSG_NOSIGNAL when applicable

2014-07-09 Thread Luca Barbato
On 09/07/14 21:13, Rémi Denis-Courmont wrote: If the remote end of a connection oriented socket hangs up, generating an EPIPE error is preferable over an unhandled SIGPIPE signal. --- libavformat/sctp.c | 4 ++-- libavformat/tcp.c | 4 libavformat/unix.c | 2 +- 3 files changed, 7

Re: [libav-devel] [PATCH] Add av_metadata_updated to check for any metadata updates on the stream.

2014-07-09 Thread Andrew Stone
Anyone have any thoughts about which way to go? Thanks, -Andrew On Thu, Jun 19, 2014 at 1:12 PM, Andrew Stone and...@clovar.com wrote: While I'll admit that I'm not a particular fan of dictionary versioning (or a change flag, etc), it was really the only simple way I could see of