Re: [FFmpeg-devel] [PATCH] avformat: Add multi protocol

2016-07-22 Thread Michael Niedermayer
On Thu, Jul 21, 2016 at 10:27:35PM -0300, James Almer wrote: > On 7/19/2016 1:42 PM, Michael Niedermayer wrote: > > fixed > > > > applied > > > > thx > > CClibavformat/teeproto.o > src/libavformat/teeproto.c: In function ‘tee_open’: > src/libavformat/teeproto.c:105:52: warning: argument

Re: [FFmpeg-devel] [PATCH 1/2] doc/muxers: add hls_flags option description

2016-07-22 Thread Steven Liu
2016-07-18 20:13 GMT+08:00 Steven Liu : > > Signed-off-by: Steven Liu > Reviewed-by: Moritz Barsnick > --- > doc/muxers.texi | 11 +++ > 1 file changed, 11 insertions(+) > > diff --git a/doc/muxers.texi b/doc/muxers.texi > index 1b99c7e..66539c1 100644 > --- a/doc/muxers.texi > +++ b/do

[FFmpeg-devel] [PATCH] fate: add test for extrastereo filter

2016-07-22 Thread Petru Rares Sincraian
Hi there, Here is a patch for extrastereo filter. Regards, Petru Rares. From 24d3a378d839b7e0a165f8cd53eb28acd843cf54 Mon Sep 17 00:00:00 2001 From: Petru Rares Sincraian Date: Thu, 21 Jul 2016 07:21:01 +0200 Subject: [PATCH] fate: add test for extrastereo filter --- tests/fate/filter-audi

Re: [FFmpeg-devel] [PATCH 2/2] doc/muxers: improve hlsenc description

2016-07-22 Thread Steven Liu
2016-07-18 20:15 GMT+08:00 Steven Liu : > Signed-off-by: Moritz Barsnick > --- > doc/muxers.texi | 12 ++-- > 1 file changed, 6 insertions(+), 6 deletions(-) > > diff --git a/doc/muxers.texi b/doc/muxers.texi > index 66539c1..5873269 100644 > --- a/doc/muxers.texi > +++ b/doc/muxers.texi

Re: [FFmpeg-devel] [PATCH] fate: add test for extrastereo filter

2016-07-22 Thread Michael Niedermayer
On Fri, Jul 22, 2016 at 10:53:41AM +, Petru Rares Sincraian wrote: > Hi there, > > > Here is a patch for extrastereo filter. > > > > Regards, > > Petru Rares. > fate/filter-audio.mak |5 + > ref/fate/filter-extrastereo | 25 + > 2 files changed, 3

Re: [FFmpeg-devel] [PATCH] avcodec/alsdec: implement floating point decoding

2016-07-22 Thread Umair Khan
On Thu, Jul 21, 2016 at 6:18 PM, Michael Niedermayer wrote: > On Sun, Jul 17, 2016 at 12:06:03AM +0530, Umair Khan wrote: >> Hi, >> >> Patch attached. >> >> - Umair > >> libavcodec/Makefile |2 >> libavcodec/alsdec.c | 284 >> +- >>

[FFmpeg-devel] [PATCH] MAINTAINERS: add myself to the project server

2016-07-22 Thread Nikolay Aleksandrov
I've been helping out with the project servers' maintenance and migration to the new machine hosted in Telepoint's data center in Sofia, BG. Signed-off-by: Nikolay Aleksandrov --- note: the patch is against the master branch MAINTAINERS | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) d

Re: [FFmpeg-devel] [PATCH 2/2] doc/muxers: improve hlsenc description

2016-07-22 Thread Michael Niedermayer
On Mon, Jul 18, 2016 at 08:15:25PM +0800, Steven Liu wrote: > Signed-off-by: Moritz Barsnick > --- > doc/muxers.texi | 12 ++-- > 1 file changed, 6 insertions(+), 6 deletions(-) applied thanks [...] -- Michael GnuPG fingerprint: 9FF2128B147EF6730BADF133611EC787040B0FAB Dictators

Re: [FFmpeg-devel] [PATCH 1/2] doc/muxers: add hls_flags option description

2016-07-22 Thread Michael Niedermayer
On Mon, Jul 18, 2016 at 08:13:46PM +0800, Steven Liu wrote: > Signed-off-by: Steven Liu > Reviewed-by: Moritz Barsnick > --- > doc/muxers.texi | 11 +++ > 1 file changed, 11 insertions(+) applied thanks [...] -- Michael GnuPG fingerprint: 9FF2128B147EF6730BADF133611EC787040B0FAB

Re: [FFmpeg-devel] [PATCH] libx264: Increase x264 opts character limit to 4096

2016-07-22 Thread Michael Niedermayer
On Thu, Jul 21, 2016 at 06:52:41PM -0700, Sasi Inguva wrote: > Signed-off-by: Sasi Inguva > --- > libavcodec/libx264.c | 4 ++-- > 1 file changed, 2 insertions(+), 2 deletions(-) applied thanks [...] -- Michael GnuPG fingerprint: 9FF2128B147EF6730BADF133611EC787040B0FAB Concerning the go

[FFmpeg-devel] [PATCH] avdev/jack: remove duplicated dispatch macros

2016-07-22 Thread Josh de Kock
The macros were moved to compat/dispatch_semaphore/semaphore.h after a libav merge, and were never removed from jack.c --- libavdevice/jack.c | 10 -- 1 file changed, 10 deletions(-) diff --git a/libavdevice/jack.c b/libavdevice/jack.c index 34e2152..076078c 100644 --- a/libavdevice/jack

Re: [FFmpeg-devel] [PATCH] avcodec/alsdec: implement floating point decoding

2016-07-22 Thread Michael Niedermayer
On Fri, Jul 22, 2016 at 06:22:30PM +0530, Umair Khan wrote: > On Thu, Jul 21, 2016 at 6:18 PM, Michael Niedermayer > wrote: > > On Sun, Jul 17, 2016 at 12:06:03AM +0530, Umair Khan wrote: [...] > >> +static int decode_string(MLZDict *dict, unsigned char *buff, int > >> string_code, int *first_cha

[FFmpeg-devel] [PATCH 1/2] avcodec/mpeg4_unpack_bframes_bsf: Copy packet props

2016-07-22 Thread sebechlebskyjan
From: Jan Sebechlebsky mpeg4_unpack_bframes_bsf bitstream filters constructs resulting packet using av_packet_from_data() function. This function however modifies only buffer (data) and leaves other fields untouched, so the content of other fields of the output packet is undefined. It is working

[FFmpeg-devel] [PATCH 2/2] avcodec/mpeg4_unpack_bframes_bsf: Check av_packet_from_data() return value

2016-07-22 Thread sebechlebskyjan
From: Jan Sebechlebsky Signed-off-by: Jan Sebechlebsky --- libavcodec/mpeg4_unpack_bframes_bsf.c | 6 +- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/libavcodec/mpeg4_unpack_bframes_bsf.c b/libavcodec/mpeg4_unpack_bframes_bsf.c index aee8ccb..e227f58 100644 --- a/libavcodec

Re: [FFmpeg-devel] [PATCH 1/2] avcodec/mpeg4_unpack_bframes_bsf: Copy packet props

2016-07-22 Thread Michael Niedermayer
On Fri, Jul 22, 2016 at 05:59:29PM +0200, sebechlebsky...@gmail.com wrote: > From: Jan Sebechlebsky > > mpeg4_unpack_bframes_bsf bitstream filters constructs > resulting packet using av_packet_from_data() function. > This function however modifies only buffer (data) and leaves > other fields unto

Re: [FFmpeg-devel] [PATCH 2/2] avcodec/mpeg4_unpack_bframes_bsf: Check av_packet_from_data() return value

2016-07-22 Thread Michael Niedermayer
On Fri, Jul 22, 2016 at 05:59:30PM +0200, sebechlebsky...@gmail.com wrote: > From: Jan Sebechlebsky > > Signed-off-by: Jan Sebechlebsky > --- > libavcodec/mpeg4_unpack_bframes_bsf.c | 6 +- > 1 file changed, 5 insertions(+), 1 deletion(-) applied thx [...] -- Michael GnuPG fingerpri

Re: [FFmpeg-devel] Outreachy 2016 december

2016-07-22 Thread Michael Niedermayer
On Wed, Jul 06, 2016 at 11:25:21PM +0200, Michael Niedermayer wrote: > Hi all > > The next Outreachy round starts soon > FFmpeg has till august 22 IIUC (https://www.gnome.org/outreachy/) > to express interrest to participate. > > We need an admin and backup admins. ping! > They need to create

[FFmpeg-devel] [PATCH]lavc/h264_ps: Be more verbose when truncating likely oversized pps.

2016-07-22 Thread Carl Eugen Hoyos
Hi! Attached patch prints the size of the oversized pps when truncating. Please comment, Carl Eugen From 0ac76e23c283103441f372590eba24d14b2977c2 Mon Sep 17 00:00:00 2001 From: Carl Eugen Hoyos Date: Fri, 22 Jul 2016 19:24:15 +0200 Subject: [PATCH] lavc/h264_ps: Be more verbose when truncating l

[FFmpeg-devel] [PATCH 1/2] avcodec/bsf: Check side data when setting BSF EOF flag.

2016-07-22 Thread sebechlebskyjan
From: Jan Sebechlebsky Set BSF EOF flag only if pkt == NULL or both data and side data are not present in packet. Signed-off-by: Jan Sebechlebsky --- I believe that side data should be checked too, and EOF flag set only when both data and side data are not present. I was testing new list

[FFmpeg-devel] [PATCH 2/2] avcodec/avcodec.h: Change av_bsf_send_packet() comment

2016-07-22 Thread sebechlebskyjan
From: Jan Sebechlebsky Specify av_bsf_packet() behaviour in case that the packet does not contain any data more precisely in the comment. Signed-off-by: Jan Sebechlebsky --- libavcodec/avcodec.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/libavcodec/avcodec.h b/li

Re: [FFmpeg-devel] [PATCH] avfilter: Add max stats to PSNR log

2016-07-22 Thread Michael Niedermayer
On Thu, Jul 21, 2016 at 03:58:30PM -0700, Lucas Cooper wrote: > > Also that different information should possibly be optional > > as in version 2 format, and with that the first line could specify > > the version of the format > > Given that this would be a backwards incompatible change (anything

Re: [FFmpeg-devel] [PATCH 1/2] avcodec/bsf: Check side data when setting BSF EOF flag.

2016-07-22 Thread Nicolas George
Le quintidi 5 thermidor, an CCXXIV, sebechlebsky...@gmail.com a écrit : > I believe that side data should be checked too, and > EOF flag set only when both data and side data are > not present. > > I was testing new list BSF API I was working on, > and with simple pass-though (empty list) BS

[FFmpeg-devel] [PATCH v2] avcodec/bsf: Set EOF flag only if pkt == NULL

2016-07-22 Thread sebechlebskyjan
From: Jan Sebechlebsky Set BSF EOF flag only if pkt == NULL in av_bsf_send_packet(). Signed-off-by: Jan Sebechlebsky --- I agree, it seems cleaner that way. Thanks, please apply this version of patch then and ignore the patch changing the comment. Regards, Jan libavcodec/bsf.c | 2 +-

Re: [FFmpeg-devel] [PATCH v2] avcodec/bsf: Set EOF flag only if pkt == NULL

2016-07-22 Thread Nicolas George
Le quintidi 5 thermidor, an CCXXIV, sebechlebsky...@gmail.com a écrit : > From: Jan Sebechlebsky > > Set BSF EOF flag only if pkt == NULL in av_bsf_send_packet(). > > Signed-off-by: Jan Sebechlebsky > --- > I agree, it seems cleaner that way. > > Thanks, > please apply this version of patch

[FFmpeg-devel] [PATCH v5 1/2] ffmpeg.c: copy video profile when using stream_copy

2016-07-22 Thread Mark Reid
--- ffmpeg.c | 1 + 1 file changed, 1 insertion(+) diff --git a/ffmpeg.c b/ffmpeg.c index b29be1e..1367920 100644 --- a/ffmpeg.c +++ b/ffmpeg.c @@ -3019,6 +3019,7 @@ static int transcode_init(void) enc_ctx->width = dec_ctx->width; enc_ctx->height

[FFmpeg-devel] [PATCH v5 0/2] libavformat/movenc: add dnxhr compatibility for apple players

2016-07-22 Thread Mark Reid
changes since v4: * use profile to set codec tag to test ffmpeg -i lb_uhd.mxf -vcodec copy out.mov here are some samples: https://dl.dropboxusercontent.com/u/170952/ffmpeg_samples/mxf/UHD/lb_uhd.mxf https://dl.dropboxusercontent.com/u/170952/ffmpeg_samples/mxf/UHD/hqx_uhd.mxf Mark Reid (2): ff

[FFmpeg-devel] [PATCH v5 2/2] libavformat/movenc: add dnxhr compatibility for apple players

2016-07-22 Thread Mark Reid
--- libavformat/movenc.c | 31 ++- 1 file changed, 26 insertions(+), 5 deletions(-) diff --git a/libavformat/movenc.c b/libavformat/movenc.c index d614933..014b465 100644 --- a/libavformat/movenc.c +++ b/libavformat/movenc.c @@ -32,6 +32,7 @@ #include "isom.h" #inclu

[FFmpeg-devel] [PATCH 1/2] avformat: read id3v2 comment tags

2016-07-22 Thread kode54
From: Chris Moeller --- libavformat/id3v2.c | 44 1 file changed, 44 insertions(+) diff --git a/libavformat/id3v2.c b/libavformat/id3v2.c index 46b9394..c38c610 100644 --- a/libavformat/id3v2.c +++ b/libavformat/id3v2.c @@ -400,6 +400,47 @@ error: }

[FFmpeg-devel] [PATCH 2/2] avformat: parse iTunes gapless information

2016-07-22 Thread kode54
From: Chris Moeller --- libavformat/mp3dec.c | 64 +++- 1 file changed, 63 insertions(+), 1 deletion(-) diff --git a/libavformat/mp3dec.c b/libavformat/mp3dec.c index 56c7f8c..3055e2c 100644 --- a/libavformat/mp3dec.c +++ b/libavformat/mp3dec.c @@

Re: [FFmpeg-devel] [PATCH 1/2] avformat: read id3v2 comment tags

2016-07-22 Thread Christopher Snowhill
Sorry for the noise, I made some poor assumptions. First, I wasn’t really paying attention when it mentioned the whitespace errors on apply, and didn’t correct them the first time. Second, I didn’t realize that it would ignore my —subject directive when sending the revised first patch. Now I lea

[FFmpeg-devel] [PATCH 1/2] avformat: read id3v2 comment tags

2016-07-22 Thread kode54
From: Chris Moeller --- libavformat/id3v2.c | 44 1 file changed, 44 insertions(+) diff --git a/libavformat/id3v2.c b/libavformat/id3v2.c index 46b9394..c38c610 100644 --- a/libavformat/id3v2.c +++ b/libavformat/id3v2.c @@ -400,6 +400,47 @@ error: }

Re: [FFmpeg-devel] [PATCH 2/2] doc/examples/muxing: Fix packet duration

2016-07-22 Thread Gonzalo
El 21/07/16 a las 20:02, Michael Niedermayer escribió: On Sun, Jul 17, 2016 at 04:10:39AM +0200, Michael Niedermayer wrote: Set needed fields in st->codec Fixes Ticket5684 Signed-off-by: Michael Niedermayer nevcairiel can you comment on this ? is this ok or should i add teh fields to codec

Re: [FFmpeg-devel] [PATCH v5 1/2] ffmpeg.c: copy video profile when using stream_copy

2016-07-22 Thread Michael Niedermayer
On Fri, Jul 22, 2016 at 01:30:14PM -0700, Mark Reid wrote: > --- > ffmpeg.c | 1 + > 1 file changed, 1 insertion(+) applied thanks [...] -- Michael GnuPG fingerprint: 9FF2128B147EF6730BADF133611EC787040B0FAB During times of universal deceit, telling the truth becomes a revolutionary act.

Re: [FFmpeg-devel] [PATCH 1/2] avformat: read id3v2 comment tags

2016-07-22 Thread Josh de Kock
On Sat, Jul 23, 2016, at 01:59 AM, kod...@gmail.com wrote: > [...] > > /** > + * Parse a comment tag. > + */ > +static void read_comm(AVFormatContext *s, AVIOContext *pb, int taglen, > + AVDictionary **metadata) This should probably be `read_comment`, it's not too long of a

Re: [FFmpeg-devel] ffprobe missing string in code

2016-07-22 Thread Dmitry Vagin
Hi Michael, sorry for my mistake, updated patch in attachment. 21.07.2016, 22:01, "Michael Niedermayer" : > On Fri, Jul 15, 2016 at 09:02:09AM +0300, Dmitry Vagin wrote: >>  Hello, FFmpeg-devel! >> >>  ffprobe not show tags when set only '-show_entries programs' >> >>  Patch in attachment. >> >>

[FFmpeg-devel] [PATCH] configure: fix checking libopenjpeg on win32

2016-07-22 Thread Aleksey Vasenev
On win32 libopenjpeg use __stdcall calling convention and linker can't find forward declared function: int opj_version() Signed-off-by: Aleksey Vasenev --- configure | 8 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/configure b/configure index 1b41303..fc2416c 100755 --

[FFmpeg-devel] [PATCH] avformat/matroskadec: return AVERROR(EIO) rather than AVERROR_EOF on parse error

2016-07-22 Thread Sophia Wang
Signed-off-by: Sophia Wang --- libavformat/matroskadec.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavformat/matroskadec.c b/libavformat/matroskadec.c index f3d701f..c536605 100644 --- a/libavformat/matroskadec.c +++ b/libavformat/matroskadec.c @@ -3323,7 +3323,7 @@ st

[FFmpeg-devel] Questions about Video Memory in qsv decoders

2016-07-22 Thread ??????
Dear all, I have a question when learning ffmpeg qsv decoder and Intel media sdk. The intel media sdk suggest to use Video Memory while doing Hardware decoding, use System Memory while doing Software decoding. FFmpeg only used System Memory to decode with qsv (Intel msdk) in file libavcodec

Re: [FFmpeg-devel] [PATCH] Avoid sending packets to network when multicast ttl is 0 in udp

2016-07-22 Thread Omid Ghaffarinia
I'm sorry for that, it failed because it was prepared for release/2.8, this one should work on master. On Thu, Jul 21, 2016 at 3:48 AM, Michael Niedermayer wrote: > On Wed, Jul 20, 2016 at 05:38:10PM +0430, Omid Ghaffarinia wrote: >> Thanks for testing in mingw >> New patch attached, which shoul