Re: [FFmpeg-devel] Post-processing filter Documentation

2015-01-31 Thread arwa arif
On Thu, Jan 29, 2015 at 5:18 PM, Stefano Sabatini wrote: > On date Thursday 2015-01-29 03:46:42 +0530, Arwa Arif encoded: > > I have updated the page with new images. > > http://trac.ffmpeg.org/wiki/Postprocessing > > Note: probably you can improve the page layout by stripping the black > top and

[FFmpeg-devel] [PATCH 1/2] avcodec/put_bits: remove unneeded #include, there are no assert()

2015-01-31 Thread Paul B Mahol
Signed-off-by: Paul B Mahol --- libavcodec/put_bits.h | 1 - 1 file changed, 1 deletion(-) diff --git a/libavcodec/put_bits.h b/libavcodec/put_bits.h index 8858caa..81be6b3 100644 --- a/libavcodec/put_bits.h +++ b/libavcodec/put_bits.h @@ -28,7 +28,6 @@ #include #include -#include #inc

[FFmpeg-devel] [PATCH 2/2] avcodec/motion_est: remove unneeded #include, there are no assert() only av_assert*

2015-01-31 Thread Paul B Mahol
Signed-off-by: Paul B Mahol --- libavcodec/motion_est.c | 3 --- 1 file changed, 3 deletions(-) diff --git a/libavcodec/motion_est.c b/libavcodec/motion_est.c index 901fafd..44a28ac 100644 --- a/libavcodec/motion_est.c +++ b/libavcodec/motion_est.c @@ -36,9 +36,6 @@ #include "mpegutils.h" #inc

Re: [FFmpeg-devel] [PATCH 6/6] avformat/movenc: remove unneeded #include, there are no assert() only av_assert*

2015-01-31 Thread Paul B Mahol
On 1/31/15, Michael Niedermayer wrote: > On Fri, Jan 30, 2015 at 11:27:57AM +, Paul B Mahol wrote: >> Signed-off-by: Paul B Mahol >> --- >> libavformat/movenc.c | 3 --- >> 1 file changed, 3 deletions(-) > > LGTM all applied thx > [...] > -- > Michael GnuPG fingerprint: 9FF2128B147EF6

Re: [FFmpeg-devel] [PATCH] lavfi: Add support to process_command in vf_eq.c

2015-01-31 Thread Stefano Sabatini
On date Friday 2015-01-30 23:17:33 +0530, Arwa Arif encoded: > I have tried to add process_command in vf_eq.c. I have attached the patch. > From 1d65e493a8eb247d86b0db324cb740579662706d Mon Sep 17 00:00:00 2001 > From: Arwa Arif > Date: Fri, 30 Jan 2015 23:06:50 +0530 > Subject: [PATCH] Add suppo

Re: [FFmpeg-devel] [PATCH 3/3] x86/hevc: add ff_hevc_sao_band_filter_{8, 10, 12}_{sse2, avx2}

2015-01-31 Thread Christophe Gisquet
Hi, 2015-01-30 19:50 GMT+01:00 James Almer : > +%macro HEVC_SAO_BAND_FILTER_COMPUTE 3 > +psraw %2, %3, %1-5 > +pcmpeqw m10, %2, m0 > +pcmpeqw m11, %2, m1 > +pcmpeqw m12, %2, m2 > +pcmpeqw %2, m3 > +pand m10, m4 >

Re: [FFmpeg-devel] [PATCH] lavd/libcdio: add more paranoia mode constants

2015-01-31 Thread Stefano Sabatini
On date Friday 2015-01-30 22:06:14 +0100, Michael Niedermayer encoded: > On Fri, Jan 30, 2015 at 06:32:33PM +0100, Stefano Sabatini wrote: > > --- > > libavdevice/libcdio.c | 4 +++- > > 1 file changed, 3 insertions(+), 1 deletion(-) > > seems not to apply cleanly but should be ok Applied. -- F

Re: [FFmpeg-devel] [PATCH] lavd/libcdio: apply minor fixes to options documentation

2015-01-31 Thread Stefano Sabatini
On date Friday 2015-01-30 19:41:43 +, Paul B Mahol encoded: > On 1/30/15, Stefano Sabatini wrote: > > --- > > libavdevice/libcdio.c | 10 +- > > 1 file changed, 5 insertions(+), 5 deletions(-) > > > > lgtm Applied. -- FFmpeg = Forgiving and Fascinating Most Practical Evangelical Gi

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

2015-01-31 Thread Stefano Sabatini
On date Saturday 2015-01-31 03:09:47 +, Timothy Gu encoded: > On Fri Jan 30 2015 at 9:32:58 AM Stefano Sabatini > wrote: > > > --- > > doc/indevs.texi | 32 +--- > > 1 file changed, 29 insertions(+), 3 deletions(-) [...] > > +For more information about the availab

Re: [FFmpeg-devel] [PATCH 3/3] x86/hevc: add ff_hevc_sao_band_filter_{8, 10, 12}_{sse2, avx2}

2015-01-31 Thread Mickaël Raulet
LGTM. Mickaël Le samedi 31 janvier 2015, Christophe Gisquet a écrit : > Hi, > > 2015-01-30 19:50 GMT+01:00 James Almer >: > > +%macro HEVC_SAO_BAND_FILTER_COMPUTE 3 > > +psraw %2, %3, %1-5 > > +pcmpeqw m10, %2, m0 > > +pcmpeqw m11, %2, m1 > > +pcmpe

Re: [FFmpeg-devel] [PATCH 3/3] x86/hevc: add ff_hevc_sao_band_filter_{8, 10, 12}_{sse2, avx2}

2015-01-31 Thread Christophe Gisquet
Hi, 2015-01-31 11:33 GMT+01:00 Christophe Gisquet : > 2015-01-30 19:50 GMT+01:00 James Almer : >> +%macro HEVC_SAO_BAND_FILTER_COMPUTE 3 >> +psraw %2, %3, %1-5 >> +pcmpeqw m10, %2, m0 >> +pcmpeqw m11, %2, m1 >> +pcmpeqw m12, %2, m2 >> +pcm

Re: [FFmpeg-devel] [PATCH 3/3] x86/hevc: add ff_hevc_sao_band_filter_{8, 10, 12}_{sse2, avx2}

2015-01-31 Thread Christophe Gisquet
Hi, and hopefully the last comments. 2015-01-30 19:50 GMT+01:00 James Almer : > +%if mmsize > 16 > +cmp widthq, 16 > +je hevc_sao_band_filter_16_%1 %+ SUFFIX > +%endif > +cmp widthq, 8 > +je hevc_sao_band_filter_8_%1 %+ SUFFIX > +%endmacro Frankly a width of <

Re: [FFmpeg-devel] PATCH dshow show devices options

2015-01-31 Thread Roger Pack
On 1/30/15, Michael Niedermayer wrote: > On Fri, Jan 30, 2015 at 08:55:45AM -0700, Roger Pack wrote: >> On 1/30/15, Don Moir wrote: >> > >> > - Original Message - >> > From: "Roger Pack" >> > To: "FFmpeg development discussions and patches" >> > >> > Sent: Friday, January 30, 2015 7:09

Re: [FFmpeg-devel] [PATCH] avformat/cache: pass options to the underlying protocol via the url_open2

2015-01-31 Thread Michael Niedermayer
On Sat, Jan 31, 2015 at 01:35:04PM +0800, Zhang Rui wrote: > --- > libavformat/cache.c | 6 +++--- > 1 file changed, 3 insertions(+), 3 deletions(-) applied thanks [...] -- Michael GnuPG fingerprint: 9FF2128B147EF6730BADF133611EC787040B0FAB While the State exists there can be no freedom;

Re: [FFmpeg-devel] [PATCH 1/2] avcodec/put_bits: remove unneeded #include, there are no assert()

2015-01-31 Thread Michael Niedermayer
On Sat, Jan 31, 2015 at 09:37:13AM +, Paul B Mahol wrote: > Signed-off-by: Paul B Mahol > --- > libavcodec/put_bits.h | 1 - > 1 file changed, 1 deletion(-) LGTM thanks [...] -- Michael GnuPG fingerprint: 9FF2128B147EF6730BADF133611EC787040B0FAB Opposition brings concord. Out of disc

Re: [FFmpeg-devel] [PATCH 2/2] avcodec/motion_est: remove unneeded #include, there are no assert() only av_assert*

2015-01-31 Thread Michael Niedermayer
On Sat, Jan 31, 2015 at 09:37:14AM +, Paul B Mahol wrote: > Signed-off-by: Paul B Mahol > --- > libavcodec/motion_est.c | 3 --- > 1 file changed, 3 deletions(-) LGTM thanks [...] -- Michael GnuPG fingerprint: 9FF2128B147EF6730BADF133611EC787040B0FAB Republics decline into democracie

[FFmpeg-devel] [PATCH 1/2] examples/demuxing_decoding: abort decoding when width, height or pix_fmt change

2015-01-31 Thread Andreas Cadhalpun
Hi, the demuxing_decoding example crashes, if width, height or pixel format of the video stream change. Attached patch fixes this. Best regards, Andreas >From 37979054edd30f3c0ea60c2103c30a18fbbc9448 Mon Sep 17 00:00:00 2001 From: Andreas Cadhalpun Date: Sat, 31 Jan 2015 20:58:07 +0100 Subje

[FFmpeg-devel] [PATCH 2/2] examples/demuxing_decoding: set stream_idx in open_codec_context only if no error occured

2015-01-31 Thread Andreas Cadhalpun
Hi, the demuxing_decoding example sets the stream_idx even if it fails find a codec for that streams. This leads to a crash, when trying to decode the stream. Attached patch fixes this. Best regards, Andreas >From 387b8eb9c1a45bd93b7dde68669426e9ca42525a Mon Sep 17 00:00:00 2001 From: Andrea

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

2015-01-31 Thread Andreas Cadhalpun
On 25.01.2015 21:25, Andreas Cadhalpun wrote: Hi, On 25.01.2015 18:53, Michael Niedermayer wrote: On Sun, Jan 25, 2015 at 05:29:08PM +0100, Hendrik Leppkes wrote: On Sun, Jan 25, 2015 at 5:15 PM, Reimar Döffinger wrote: I vote for just removing the build date. [...] Remove it for all I car

Re: [FFmpeg-devel] [PATCH 2/2] examples/demuxing_decoding: set stream_idx in open_codec_context only if no error occured

2015-01-31 Thread Michael Niedermayer
On Sat, Jan 31, 2015 at 09:25:44PM +0100, Andreas Cadhalpun wrote: > Hi, > > the demuxing_decoding example sets the stream_idx even if it fails > find a codec for that streams. This leads to a crash, when trying to > decode the stream. > > Attached patch fixes this. > > Best regards, > Andreas

Re: [FFmpeg-devel] [PATCH 1/2] examples/demuxing_decoding: abort decoding when width, height or pix_fmt change

2015-01-31 Thread Hendrik Leppkes
On Sat, Jan 31, 2015 at 9:25 PM, Andreas Cadhalpun < andreas.cadhal...@googlemail.com> wrote: > Hi, > > the demuxing_decoding example crashes, if width, height or pixel format of > the video stream change. > > Since this is an example, there should maybe be a more descriptive error message and a c

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

2015-01-31 Thread Michael Niedermayer
On Sun, Jan 25, 2015 at 09:25:07PM +0100, Andreas Cadhalpun wrote: > Hi, > > On 25.01.2015 18:53, Michael Niedermayer wrote: > >On Sun, Jan 25, 2015 at 05:29:08PM +0100, Hendrik Leppkes wrote: > >>On Sun, Jan 25, 2015 at 5:15 PM, Reimar Döffinger > >>wrote: > >>>I vote for just removing the build

Re: [FFmpeg-devel] [PATCH 4/6] dv: fix weight table for 2x4x8 transform

2015-01-31 Thread Christophe Gisquet
Hi, 2014-10-30 14:49 GMT+01:00 Christophe Gisquet : > Hi, > > 2014-10-26 19:20 GMT+01:00 Michael Niedermayer : >> I took the liberty to apply the patch and fix the bug instead of >> leaving it open until someone succeeds writing a fate test for it > > Hi, I wonder whether this should be reverted f

Re: [FFmpeg-devel] [PATCH 1/2] examples/demuxing_decoding: abort decoding when width, height or pix_fmt change

2015-01-31 Thread Andreas Cadhalpun
Hi, On 31.01.2015 22:19, Hendrik Leppkes wrote: Since this is an example, there should maybe be a more descriptive error message and a comment to mention why its done, and how one would usually go about adapting to these changes? That's a good idea. Do you think the attached patch is sufficien

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

2015-01-31 Thread Andreas Cadhalpun
Hi, On 31.01.2015 22:36, Michael Niedermayer wrote: On Sun, Jan 25, 2015 at 09:25:07PM +0100, Andreas Cadhalpun wrote: diff --git a/doc/Doxyfile b/doc/Doxyfile index 8697e6c..5d18b10 100644 --- a/doc/Doxyfile +++ b/doc/Doxyfile @@ -839,7 +839,7 @@ HTML_COLORSTYLE_GAMMA = 80 # page will conta

[FFmpeg-devel] [PATCH] ffplay: Fallback to dts if pts is unavailable in pkt_in_play_range calculation

2015-01-31 Thread Michael Niedermayer
Signed-off-by: Michael Niedermayer --- ffplay.c |4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/ffplay.c b/ffplay.c index 72ec35d..c112ead 100644 --- a/ffplay.c +++ b/ffplay.c @@ -2881,6 +2881,7 @@ static int read_thread(void *arg) int orig_nb_streams; SDL_mute

[FFmpeg-devel] [PATCH] libavformat/mpegtsenc: allow to set service_type in sdt

2015-01-31 Thread dhead666
--- doc/muxers.texi | 3 +++ libavformat/mpegtsenc.c | 6 +- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/doc/muxers.texi b/doc/muxers.texi index 7ca6409..52a9cd4 100644 --- a/doc/muxers.texi +++ b/doc/muxers.texi @@ -690,6 +690,9 @@ Set the transport_stream_id (defaul

Re: [FFmpeg-devel] [PATCH] libavformat/mpegtsenc: allow to set service_type in sdt

2015-01-31 Thread dhead 666
Description: This adds an option to set the service type in mpegts as define in ETSI 300 468. I've been using this to pipe internet radio stream (originally as HLS/m3u8) from ffmpeg to tvheadend, when the service type set right tvheadend recognize the mpegts stream as a radio channel. This have

Re: [FFmpeg-devel] [PATCH] libavformat/mpegtsenc: allow to set service_type in sdt

2015-01-31 Thread Timothy Gu
On Sat Jan 31 2015 at 5:41:10 PM dhead666 wrote: > --- > doc/muxers.texi | 3 +++ > libavformat/mpegtsenc.c | 6 +- > 2 files changed, 8 insertions(+), 1 deletion(-) > [...] > +{ "mpegts_service_type", "Set service_type field.", > + offsetof(MpegTSWrite, service_type), AV_O

[FFmpeg-devel] [PATCH] libavformat/mpegtsenc: allow to set service_type in sdt

2015-01-31 Thread dhead666
--- @TimothyGu thanks for all your help, I hope this is now fine. doc/muxers.texi | 3 +++ libavformat/mpegtsenc.c | 6 +- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/doc/muxers.texi b/doc/muxers.texi index 7ca6409..2a9ebfa 100644 --- a/doc/muxers.texi +++ b/doc/mux

Re: [FFmpeg-devel] [PATCH 4/6] dv: fix weight table for 2x4x8 transform

2015-01-31 Thread Michael Niedermayer
On Sat, Jan 31, 2015 at 10:51:05PM +0100, Christophe Gisquet wrote: > Hi, > > 2014-10-30 14:49 GMT+01:00 Christophe Gisquet : > > Hi, > > > > 2014-10-26 19:20 GMT+01:00 Michael Niedermayer : > >> I took the liberty to apply the patch and fix the bug instead of > >> leaving it open until someone su