[FFmpeg-devel] [PATCH] avfilter: add acrusher filter

2016-08-10 Thread Paul B Mahol
Hi, patch attached. 0001-avfilter-add-acrusher-filter.patch Description: Binary data ___ ffmpeg-devel mailing list ffmpeg-devel@ffmpeg.org http://ffmpeg.org/mailman/listinfo/ffmpeg-devel

[FFmpeg-devel] [PATCH] avformat/matroskadec: retain error codes in matroska_resync() and matroska_read_packet()

2016-08-10 Thread Sophia Wang
Signed-off-by: Sophia Wang --- libavformat/matroskadec.c | 15 ++- 1 file changed, 10 insertions(+), 5 deletions(-) diff --git a/libavformat/matroskadec.c b/libavformat/matroskadec.c index d07a092..8c809ad 100644 --- a/libavformat/matroskadec.c +++

Re: [FFmpeg-devel] [PATCHv2] avfiltergraph.c: restore disabling of auto conversions

2016-08-10 Thread Burt P.
applied On Wed, Aug 10, 2016 at 4:09 AM, Burt P wrote: > Restore a check added in 440af105f2306d3c7b3b3f4d7530bab910d49cb9 > but lost sometime after. avfilter_graph_set_auto_convert() will > have an effect once again. > > Signed-off-by: Burt P > --- >

[FFmpeg-devel] [PATCH] examples/demuxing_decoding: convert to codecpar

2016-08-10 Thread James Almer
Signed-off-by: James Almer --- doc/examples/demuxing_decoding.c | 33 ++--- 1 file changed, 22 insertions(+), 11 deletions(-) diff --git a/doc/examples/demuxing_decoding.c b/doc/examples/demuxing_decoding.c index 59e0ccc..175185a 100644 ---

Re: [FFmpeg-devel] [PATCH 2/4] avformat/avframe.h: Add a flag in AVIndexEntry to discard frame after decoding.

2016-08-10 Thread Sasi Inguva
Mov demuxer first builds the index, containing all the samples and their timestamps, in its read_header function. It then simply searches this index for the required sample on every read_packet call, and constructs an AVPacket out of that sample. Implementation wise the edit list code basically

Re: [FFmpeg-devel] [PATCH 05/11] avformat/mux: Refactor muxer deinit from av_write_trailer

2016-08-10 Thread Michael Niedermayer
On Tue, Aug 02, 2016 at 03:24:16PM +0200, sebechlebsky...@gmail.com wrote: > From: Jan Sebechlebsky > > Move muxer deinitialization and private resources freeing > in a separate static function free_muxer(AVFormatContext*). > > Signed-off-by: Jan Sebechlebsky

Re: [FFmpeg-devel] [PATCH 04/11] avformat/muxers: Add non-blocking mode support for av_write_trailer

2016-08-10 Thread Michael Niedermayer
On Tue, Aug 02, 2016 at 03:24:15PM +0200, sebechlebsky...@gmail.com wrote: > From: Jan Sebechlebsky > > This makes av_write_trailer not to free the resources if write_trailer > call returns AVERROR(EAGAIN) allowing repeated calls of write_trailer of > non-blocking

Re: [FFmpeg-devel] [PATCH] avformat/matroskadec: retain error codes in matroska_resync() and matroska_read_packet()

2016-08-10 Thread Sophia Wang
Apologies, I didn't realize that matroska->done was only checked in one place. But Nicolas raises a good point about the subtle change in behavior. I did not intend to change the overall behavior of the code for clients, so I'll modify the patch to restore the matroska->done check. On Tue, Aug 9,

[FFmpeg-devel] [PATCH 1/4] avutil/frame: Add a flag to discard frame after decode.

2016-08-10 Thread Sasi Inguva
Signed-off-by: Sasi Inguva --- libavutil/frame.c | 1 + libavutil/frame.h | 4 libavutil/version.h | 2 +- 3 files changed, 6 insertions(+), 1 deletion(-) diff --git a/libavutil/frame.c b/libavutil/frame.c index 662c20d..3c74931 100644 --- a/libavutil/frame.c +++

Re: [FFmpeg-devel] [PATCH] lavf/mov: Add support for edit list parsing.

2016-08-10 Thread Sasi Inguva
Oops. I messed up with git send-email, and my message didn't occur in reply to this thread. So, here I am typing in Gmail.. Hi Clement and Michael, Sorry that I hadn't started a discussion on the patch before sending it for review. However this patch has been there for years in our ffmpeg

Re: [FFmpeg-devel] [PATCH 4/4] lavf/mov: Add support for edit list parsing.

2016-08-10 Thread Michael Niedermayer
On Tue, Aug 09, 2016 at 06:48:22PM -0700, Sasi Inguva wrote: > Signed-off-by: Sasi Inguva > --- > libavformat/mov.c| 323 - > tests/Makefile |1 + > tests/fate/mov.mak | 28 + >

Re: [FFmpeg-devel] [PATCH] avformat/matroskadec: retain error codes in matroska_resync() and matroska_read_packet()

2016-08-10 Thread Michael Niedermayer
On Wed, Aug 10, 2016 at 10:24:08AM -0700, Sophia Wang wrote: > Signed-off-by: Sophia Wang > --- > libavformat/matroskadec.c | 15 ++- > 1 file changed, 10 insertions(+), 5 deletions(-) > > diff --git a/libavformat/matroskadec.c b/libavformat/matroskadec.c > index

Re: [FFmpeg-devel] [PATCH] libavformat/mxfenc: add UID for unconstrained H.264 coded video in baseline profile

2016-08-10 Thread Michael Niedermayer
On Tue, Aug 09, 2016 at 02:15:38PM +0200, Matthias Hunstock wrote: > Enable the MXF muxer to mux baseline H.264 video streams. > > Signed-off-by: Matthias Hunstock > --- > libavformat/mxfenc.c | 2 ++ > 1 file changed, 2 insertions(+) thats nice applied thanks [...]

Re: [FFmpeg-devel] [GSoC] Motion Interpolation

2016-08-10 Thread Davinder Singh
On Mon, Jul 25, 2016 at 9:35 AM Davinder Singh wrote: > https://github.com/dsmudhar/FFmpeg/commits/dev > > The Paper 2 algorithm is complete. It seems good. If I compare Paper 2 > (which uses bilateral motion estimation) v/s motion vectors exported by > mEstimate filter: > >

[FFmpeg-devel] [PATCH] libavformat/http: add support for headers option in listen mode

2016-08-10 Thread Moritz Barsnick
Instead of silently ignoring the headers option in listen mode, use the provided headers. Signed-off-by: Moritz Barsnick --- libavformat/http.c | 6 +- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/libavformat/http.c b/libavformat/http.c index

[FFmpeg-devel] [PATCH 1/2] avisynth: simplify the pix_fmt check for the newer AviSynth API

2016-08-10 Thread Stephen Hutchinson
The values don't need to be hardcoded since the correct values are returned by avs_bits_per_pixel. --- libavformat/avisynth.c | 27 +-- 1 file changed, 5 insertions(+), 22 deletions(-) diff --git a/libavformat/avisynth.c b/libavformat/avisynth.c index d6167fa..1a175cb

Re: [FFmpeg-devel] [PATCH 4/4] lavf/mov: Add support for edit list parsing.

2016-08-10 Thread Carl Eugen Hoyos
Hi! 2016-08-10 19:14 GMT+02:00 Sasi Inguva : > Oops. I forgot to git add the new test ref files. Please find attached, the > modified patch. Will also send it through git send-email. Please also fix the "%lld" occurrences: There is %"PRId64" Carl Eugen

[FFmpeg-devel] [PATCH 3/4] lavc: Add a flag in AVPacket to discard packet after decoding. Discard frames after decoding based on the flag.

2016-08-10 Thread Sasi Inguva
Signed-off-by: Sasi Inguva --- libavcodec/avcodec.h | 6 ++ libavcodec/utils.c | 14 +- libavcodec/version.h | 2 +- 3 files changed, 20 insertions(+), 2 deletions(-) diff --git a/libavcodec/avcodec.h b/libavcodec/avcodec.h index 3b21537..d68da01 100644 ---

[FFmpeg-devel] avfilter_graph_set_auto_convert() appears to do nothing

2016-08-10 Thread Burt P.
As suggested by Nicolas George, I've recently tried avfilter_graph_set_auto_convert(ctx->graph, AVFILTER_AUTO_CONVERT_NONE) in a filter init() function, but it did not prevent auto-inserted resampling filters from appearing. I looked around a bit and could not find a place where the member of

Re: [FFmpeg-devel] [PATCHv2] avfiltergraph.c: restore disabling of auto conversions

2016-08-10 Thread Nicolas George
Le quartidi 24 thermidor, an CCXXIV, Burt P a écrit : > Restore a check added in 440af105f2306d3c7b3b3f4d7530bab910d49cb9 > but lost sometime after. avfilter_graph_set_auto_convert() will > have an effect once again. > > Signed-off-by: Burt P LGTM, thanks for taking care of

[FFmpeg-devel] (no subject)

2016-08-10 Thread Sasi Inguva
Sorry that I hadn't started a discussion on the patch before sending it for review. However this patch has been there for years in our ffmpeg version. I simply made some cosmetic changes to prepare it to send for review, hence I haven't wasted much work/time on it. That said, I think that the

[FFmpeg-devel] [PATCHv2] avfiltergraph.c: restore disabling of auto conversions

2016-08-10 Thread Burt P
Restore a check added in 440af105f2306d3c7b3b3f4d7530bab910d49cb9 but lost sometime after. avfilter_graph_set_auto_convert() will have an effect once again. Signed-off-by: Burt P --- libavfilter/avfiltergraph.c | 8 1 file changed, 8 insertions(+) diff --git

Re: [FFmpeg-devel] avfilter_graph_set_auto_convert() appears to do nothing

2016-08-10 Thread Burt P.
Now reading to the end of the original message by Nicolas George, which I should have done before, I can see that it is already known to be lost. -- Burt ___ ffmpeg-devel mailing list ffmpeg-devel@ffmpeg.org

[FFmpeg-devel] [PATCH] avfiltergraph.c: restore disabling of auto conversions

2016-08-10 Thread Burt P
Signed-off-by: Burt P --- libavfilter/avfiltergraph.c | 8 1 file changed, 8 insertions(+) diff --git a/libavfilter/avfiltergraph.c b/libavfilter/avfiltergraph.c index 4275113..1685b76 100644 --- a/libavfilter/avfiltergraph.c +++ b/libavfilter/avfiltergraph.c @@

[FFmpeg-devel] [PATCH 4/4] lavf/mov: Add support for edit list parsing.

2016-08-10 Thread Sasi Inguva
Signed-off-by: Sasi Inguva --- libavformat/mov.c| 323 - tests/Makefile |1 + tests/fate/mov.mak | 28 + tests/ref/fate/filter-fps-cfr|1 -

Re: [FFmpeg-devel] [PATCH 2/4] avformat/avframe.h: Add a flag in AVIndexEntry to discard frame after decoding.

2016-08-10 Thread Hendrik Leppkes
On Wed, Aug 10, 2016 at 3:48 AM, Sasi Inguva wrote: > Signed-off-by: Sasi Inguva > --- > libavformat/avformat.h | 3 +++ > libavformat/version.h | 2 +- > 2 files changed, 4 insertions(+), 1 deletion(-) > > diff --git a/libavformat/avformat.h

[FFmpeg-devel] [PATCH 2/4] avformat/avframe.h: Add a flag in AVIndexEntry to discard frame after decoding.

2016-08-10 Thread Sasi Inguva
Signed-off-by: Sasi Inguva --- libavformat/avformat.h | 3 +++ libavformat/version.h | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/libavformat/avformat.h b/libavformat/avformat.h index d8a6cf3..8cf1401 100644 --- a/libavformat/avformat.h +++