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
--- a/libavcodec/avcod
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
AVFi
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 it.
Printing the lis
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 co
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 a/libavfilter/avfiltergraph
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
@@ -507,6 +507,14 @@ static
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
http://ffmpeg.org/mailman/listinfo/ffmpeg-dev
Signed-off-by: Sasi Inguva
---
libavformat/mov.c| 323 -
tests/Makefile |1 +
tests/fate/mov.mak | 28 +
tests/ref/fate/filter-fps-cfr|1 -
tests/ref/fate/gaplessenc-itunes-to-ip
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 b/libavformat/avformat.h
> index d8a6cf3..8cf1401 10
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
+++ b/libavformat/avformat.h
@@ -8
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
+++ b/libavutil/frame.c
@@
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 versio
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 +
> tests/ref/fate/filte
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
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
--- a/doc/examples/demuxing_dec
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
> ---
> libavfilter/avfiltergraph.c | 8
>
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 par
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 muxer.
>
> Signed-off-by: Jan S
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
> ---
> libavformat/mux.c | 31 +++
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,
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
+++ b/libavformat/matroskadec.c
@@ -738
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:
>
> $ tiny_psnr 60_source
Instead of silently ignoring the content_type option in listen mode,
apply its value to the provided "Content-Type:" header.
Signed-off-by: Moritz Barsnick
---
doc/protocols.texi | 2 +-
libavformat/http.c | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/doc/protocols.texi
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 cbeaebf..70d64af 100644
--- a/lib
On Wed, Aug 10, 2016 at 09:18:26PM +0200, Moritz Barsnick wrote:
> 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 --gi
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 d07a092..8c809ad 100
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
[...]
--
Michael GnuPG fing
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
___
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 1006
29 matches
Mail list logo