Re: [libav-devel] [PATCH 04/13] configure: Disentangle vfw32 and user32 lib handling

2016-12-05 Thread Diego Biurrun
On Mon, Dec 05, 2016 at 05:39:57PM +0100, Hendrik Leppkes wrote: > On Tue, Nov 29, 2016 at 7:34 PM, Diego Biurrun wrote: > > --- a/configure > > +++ b/configure > > @@ -2382,7 +2382,6 @@ sndio_indev_deps="sndio_h" > > sndio_outdev_deps="sndio_h" > >

Re: [libav-devel] [PATCH] configure: Simplify and fix avfoundation indev handling

2016-12-05 Thread Diego Biurrun
On Thu, Dec 01, 2016 at 03:34:48PM +0100, Diego Biurrun wrote: > Handle extralibs in the standard way, add missing pthreads dependency. > Also globally check for -fobj-arc with Objective-C compilers since > that option is useful for other Objective-C code as well. > --- > > Needs some testing on

Re: [libav-devel] [PATCH] omx: Fix OOM check

2016-12-05 Thread Martin Storsjö
On Mon, 5 Dec 2016, Timothy Gu wrote: Also use av_mallocz_array(). Found by Coverity in FFmpeg. --- libavcodec/omx.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libavcodec/omx.c b/libavcodec/omx.c index 0c61c2f..05c8743 100644 --- a/libavcodec/omx.c +++

[libav-devel] [PATCH] avconv: Demote the bitstream estimation failure to DEBUG loglevel

2016-12-05 Thread Luca Barbato
--- avconv.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/avconv.c b/avconv.c index 5c31332..99c5c6b 100644 --- a/avconv.c +++ b/avconv.c @@ -941,7 +941,7 @@ static void print_report(int is_last_report, int64_t timer_start) if (total_size < 0) { char

[libav-devel] [PATCH] qsvdec: Fix memory leak

2016-12-05 Thread Timothy Gu
Found by Coverity in FFmpeg. --- libavcodec/qsvdec.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/libavcodec/qsvdec.c b/libavcodec/qsvdec.c index b6fead0..b83b0fc 100644 --- a/libavcodec/qsvdec.c +++ b/libavcodec/qsvdec.c @@ -306,8 +306,10 @@ static int

Re: [libav-devel] [PATCH] qsvdec: Fix memory leak

2016-12-05 Thread Vittorio Giovara
On Mon, Dec 5, 2016 at 1:21 PM, Timothy Gu wrote: > Found by Coverity in FFmpeg. Hey Timothy, thanks for your patches. While it's great to hear that it was "found by Coverity in FFmpeg", it would more useful to mention the CID number. As you may know, Coverity is able to

Re: [libav-devel] [PATCH] qsvdec: Fix memory leak

2016-12-05 Thread Timothy Gu
On Mon, Dec 5, 2016 at 10:48 AM Vittorio Giovara wrote: > While it's great to hear that it was "found by Coverity in FFmpeg", it > would more useful to mention the CID number. > As you may know, Coverity is able to hash same issues in different > repositories, so by

[libav-devel] [PATCH] omx: Fix OOM check

2016-12-05 Thread Timothy Gu
Also use av_mallocz_array(). Found by Coverity in FFmpeg. --- libavcodec/omx.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libavcodec/omx.c b/libavcodec/omx.c index 0c61c2f..05c8743 100644 --- a/libavcodec/omx.c +++ b/libavcodec/omx.c @@ -352,12 +352,12 @@ static

[libav-devel] [PATCH] APIChanges: Mention where release 12 was cut

2016-12-05 Thread Vittorio Giovara
Signed-off-by: Vittorio Giovara --- doc/APIchanges | 4 1 file changed, 4 insertions(+) diff --git a/doc/APIchanges b/doc/APIchanges index 90c6500..dfd1532 100644 --- a/doc/APIchanges +++ b/doc/APIchanges @@ -49,6 +49,10 @@ API changes, most recent first:

Re: [libav-devel] [PATCH] qsvdec: Fix memory leak

2016-12-05 Thread Vittorio Giovara
On Mon, Dec 5, 2016 at 2:31 PM, Timothy Gu wrote: > Are CIDs universal for both projects? I figured an FFmpeg CID is not useful > for Libav. They are universal, yes, especially in project coming from a shared code base. > But either way for FFmpeg this patch is CID

Re: [libav-devel] [PATCH] omx: Fix OOM check

2016-12-05 Thread Vittorio Giovara
On Mon, Dec 5, 2016 at 3:29 PM, Martin Storsjö wrote: > On Mon, 5 Dec 2016, Timothy Gu wrote: > >> Also use av_mallocz_array(). >> >> Found by Coverity in FFmpeg. >> --- >> libavcodec/omx.c | 4 ++-- >> 1 file changed, 2 insertions(+), 2 deletions(-) >> >> diff --git

[libav-devel] [PATCH] avio: Keep track of the amount of data written

2016-12-05 Thread Luca Barbato
Make avio_size() work with any write AVIOContext. --- libavformat/avio.h| 1 + libavformat/aviobuf.c | 13 ++--- 2 files changed, 11 insertions(+), 3 deletions(-) diff --git a/libavformat/avio.h b/libavformat/avio.h index 49721aa..7bf7985 100644 --- a/libavformat/avio.h +++

Re: [libav-devel] [PATCH 01/41] Bump major versions of all libraries

2016-12-05 Thread Diego Biurrun
On Tue, Dec 06, 2016 at 12:27:22AM -0500, Vittorio Giovara wrote: > This disable everything that was deprecated in the past 18 months, disable_S > --- a/libavdevice/version.h > +++ b/libavdevice/version.h > @@ -27,8 +27,8 @@ > > -#define LIBAVDEVICE_VERSION_MAJOR 56 > -#define

[libav-devel] [PATCH 06/41] lavfi: Drop deprecated non-const filter retrieval

2016-12-05 Thread Vittorio Giovara
Deprecated in 10/2013. --- libavfilter/avfilter.c | 5 + libavfilter/avfilter.h | 5 + libavfilter/version.h | 3 --- 3 files changed, 2 insertions(+), 11 deletions(-) diff --git a/libavfilter/avfilter.c b/libavfilter/avfilter.c index 3ae7a59..83c1a7c 100644 --- a/libavfilter/avfilter.c

[libav-devel] [PATCH 04/41] lavfi: Drop deprecated filter initialization

2016-12-05 Thread Vittorio Giovara
Deprecated in 03/2013. --- libavfilter/avfilter.c | 7 --- libavfilter/avfilter.h | 15 --- libavfilter/version.h | 3 --- 3 files changed, 25 deletions(-) diff --git a/libavfilter/avfilter.c b/libavfilter/avfilter.c index d6bddef..439eee4 100644 --- a/libavfilter/avfilter.c

[libav-devel] [PATCH 03/41] lavfi: Drop deprecated functions to open a filter or a filterchain

2016-12-05 Thread Vittorio Giovara
Deprecated in 03/2013. --- libavfilter/avfilter.c | 8 libavfilter/avfilter.h | 30 -- libavfilter/avfiltergraph.c | 17 - libavfilter/version.h | 3 --- 4 files changed, 58 deletions(-) diff --git a/libavfilter/avfilter.c

[libav-devel] [PATCH 01/41] Bump major versions of all libraries

2016-12-05 Thread Vittorio Giovara
This disable everything that was deprecated in the past 18 months, with a couple of minor (but sensible) exceptions. Postpone any API-incompatible changes until the next bump. Signed-off-by: Vittorio Giovara --- libavcodec/version.h| 10 +-

[libav-devel] [PATCH 28/41] lavc: Drop deprecated negative linesizes symbol

2016-12-05 Thread Vittorio Giovara
Deprecated in 11/2013. --- libavcodec/avcodec.h | 6 -- libavcodec/version.h | 3 --- 2 files changed, 9 deletions(-) diff --git a/libavcodec/avcodec.h b/libavcodec/avcodec.h index 4357422..191454c 100644 --- a/libavcodec/avcodec.h +++ b/libavcodec/avcodec.h @@ -1021,12 +1021,6 @@ typedef

[libav-devel] [PATCH 25/41] lavc: Drop deprecated macroblock type symbols

2016-12-05 Thread Vittorio Giovara
Deprecated in 10/2013. --- libavcodec/avcodec.h | 26 -- libavcodec/mpegutils.h | 2 -- libavcodec/version.h | 3 --- 3 files changed, 31 deletions(-) diff --git a/libavcodec/avcodec.h b/libavcodec/avcodec.h index 6bf1576..36be2f8 100644 --- a/libavcodec/avcodec.h

[libav-devel] [PATCH 27/41] lavc: Drop deprecated av_fast_malloc() compatibility

2016-12-05 Thread Vittorio Giovara
Deprecated in 10/2013. --- libavcodec/avcodec.h | 5 - libavcodec/version.h | 3 --- 2 files changed, 8 deletions(-) diff --git a/libavcodec/avcodec.h b/libavcodec/avcodec.h index 733ed04..4357422 100644 --- a/libavcodec/avcodec.h +++ b/libavcodec/avcodec.h @@ -41,11 +41,6 @@ #include

[libav-devel] [PATCH 08/41] lavf: Drop deprecated AVFract type and related field

2016-12-05 Thread Vittorio Giovara
Deprecated in 05/2014. --- libavformat/avformat.h | 21 - libavformat/version.h | 3 --- 2 files changed, 24 deletions(-) diff --git a/libavformat/avformat.h b/libavformat/avformat.h index 547b88b..1bf66b1 100644 --- a/libavformat/avformat.h +++ b/libavformat/avformat.h @@

[libav-devel] [PATCH 09/41] lavf: Drop deprecated hint to set muxer timebase

2016-12-05 Thread Vittorio Giovara
Deprecated in 05/2014. --- libavformat/mux.c | 11 --- libavformat/version.h | 4 +--- 2 files changed, 1 insertion(+), 14 deletions(-) diff --git a/libavformat/mux.c b/libavformat/mux.c index 1ec69b9..07a0d18 100644 --- a/libavformat/mux.c +++ b/libavformat/mux.c @@ -110,17 +110,6

[libav-devel] [PATCH 02/41] lavfi: Drop deprecated way of passing options for a few filters

2016-12-05 Thread Vittorio Giovara
Deprecated in 02/2013. --- libavfilter/af_channelmap.c | 7 - libavfilter/af_join.c | 8 - libavfilter/avfilter.c | 76 - libavfilter/buffersrc.c | 8 - libavfilter/version.h | 3 -- libavfilter/vf_aspect.c | 46

[libav-devel] [PATCH 07/41] lavf: Drop deprecated bitexact functionality

2016-12-05 Thread Vittorio Giovara
Deprecated in 05/2014. --- libavformat/mux.c | 7 --- libavformat/version.h | 3 --- 2 files changed, 10 deletions(-) diff --git a/libavformat/mux.c b/libavformat/mux.c index 37c4541..1ec69b9 100644 --- a/libavformat/mux.c +++ b/libavformat/mux.c @@ -99,13 +99,6 @@ static int

[libav-devel] [PATCH 37/41] lavc: Drop deprecated mv0 option

2016-12-05 Thread Vittorio Giovara
Deprecated in 04/2014. --- libavcodec/avcodec.h | 7 --- libavcodec/mpegvideo_enc.c | 7 --- libavcodec/options_table.h | 3 --- libavcodec/version.h | 3 --- 4 files changed, 20 deletions(-) diff --git a/libavcodec/avcodec.h b/libavcodec/avcodec.h index 1feed51..7375957

[libav-devel] [PATCH 39/41] lavu: Drop deprecated vdpau pixel formats

2016-12-05 Thread Vittorio Giovara
Deprecated in 07/2013. --- libavutil/pixdesc.c | 38 -- libavutil/pixfmt.h | 10 -- libavutil/version.h | 3 --- 3 files changed, 51 deletions(-) diff --git a/libavutil/pixdesc.c b/libavutil/pixdesc.c index 2f1adf5..1e54462 100644 ---

[libav-devel] [PATCH 22/41] lavc: Drop deprecated xvmc hacks

2016-12-05 Thread Vittorio Giovara
Deprecated in 11/2013. --- configure | 2 - libavcodec/Makefile | 3 - libavcodec/allcodecs.c| 3 - libavcodec/avcodec.h | 17 --- libavcodec/blockdsp.c | 4 - libavcodec/blockdsp.h | 5 - libavcodec/codec_desc.c |

[libav-devel] [PATCH 41/41] lavu: Drop deprecated option type

2016-12-05 Thread Vittorio Giovara
Deprecated in 02/2014. --- libavutil/opt.h | 3 --- libavutil/version.h | 3 --- 2 files changed, 6 deletions(-) diff --git a/libavutil/opt.h b/libavutil/opt.h index a65c4f4..b68a396 100644 --- a/libavutil/opt.h +++ b/libavutil/opt.h @@ -263,9 +263,6 @@ typedef struct AVOption { int

[libav-devel] [PATCH 16/41] lavc: Drop deprecated way of setting codec dimensions

2016-12-05 Thread Vittorio Giovara
Deprecated in 10/2013. --- libavcodec/avcodec.h | 8 libavcodec/utils.c | 7 --- libavcodec/version.h | 3 --- 3 files changed, 18 deletions(-) diff --git a/libavcodec/avcodec.h b/libavcodec/avcodec.h index 5f6e04b..5109914 100644 --- a/libavcodec/avcodec.h +++

[libav-devel] [PATCH 38/41] lavc: Drop deprecated public codec name

2016-12-05 Thread Vittorio Giovara
Deprecated in 04/2014. --- libavcodec/avcodec.h | 7 --- libavcodec/version.h | 3 --- 2 files changed, 10 deletions(-) diff --git a/libavcodec/avcodec.h b/libavcodec/avcodec.h index 7375957..8bd2901 100644 --- a/libavcodec/avcodec.h +++ b/libavcodec/avcodec.h @@ -1320,13 +1320,6 @@ typedef

[libav-devel] [PATCH 29/41] lavc: Drop deprecated emu edge functionality

2016-12-05 Thread Vittorio Giovara
Deprecated in 01/2014. --- libavcodec/avcodec.h | 22 -- libavcodec/options_table.h | 3 --- libavcodec/utils.c | 7 --- libavcodec/version.h | 3 --- 4 files changed, 35 deletions(-) diff --git a/libavcodec/avcodec.h b/libavcodec/avcodec.h index

[libav-devel] [PATCH 11/41] lavc: Drop deprecated missing sample log function

2016-12-05 Thread Vittorio Giovara
Deprecated in 01/2013. --- libavcodec/avcodec.h | 30 -- libavcodec/utils.c | 29 - libavcodec/version.h | 3 --- 3 files changed, 62 deletions(-) diff --git a/libavcodec/avcodec.h b/libavcodec/avcodec.h index c35f3aa..6ad2382 100644 ---

[libav-devel] [PATCH 21/41] lavc: Drop deprecated alpha architecture sysmbols

2016-12-05 Thread Vittorio Giovara
Deprecated in 11/2013. --- libavcodec/avcodec.h | 3 --- libavcodec/options_table.h | 3 --- libavcodec/version.h | 3 --- 3 files changed, 9 deletions(-) diff --git a/libavcodec/avcodec.h b/libavcodec/avcodec.h index 81de75f..635fdd2 100644 --- a/libavcodec/avcodec.h +++

[libav-devel] [PATCH 36/41] lavc: Drop deprecated gmc option

2016-12-05 Thread Vittorio Giovara
Deprecated in 04/2014. --- libavcodec/avcodec.h | 6 -- libavcodec/libxvid.c | 6 -- libavcodec/options_table.h | 3 --- libavcodec/version.h | 3 --- 4 files changed, 18 deletions(-) diff --git a/libavcodec/avcodec.h b/libavcodec/avcodec.h index 4465ae7..1feed51 100644

[libav-devel] [PATCH 10/41] lavc: Drop deprecated chroma subsample function

2016-12-05 Thread Vittorio Giovara
Deprecated in 11/2012. --- libavcodec/avcodec.h| 6 -- libavcodec/imgconvert.c | 9 - libavcodec/version.h| 3 --- 3 files changed, 18 deletions(-) diff --git a/libavcodec/avcodec.h b/libavcodec/avcodec.h index e75d300..c35f3aa 100644 --- a/libavcodec/avcodec.h +++

[libav-devel] [PATCH 34/41] lavc: Drop deprecated preserve input option

2016-12-05 Thread Vittorio Giovara
Deprecated in 04/2014. --- libavcodec/avcodec.h | 7 --- libavcodec/options_table.h | 3 --- libavcodec/version.h | 3 --- 3 files changed, 13 deletions(-) diff --git a/libavcodec/avcodec.h b/libavcodec/avcodec.h index 0f83044..073250a 100644 --- a/libavcodec/avcodec.h +++

[libav-devel] [PATCH 32/41] lavc: Drop deprecated unused public members

2016-12-05 Thread Vittorio Giovara
Deprecated in 07/2014. --- libavcodec/avcodec.h | 18 -- libavcodec/options_table.h | 12 libavcodec/version.h | 3 --- 3 files changed, 33 deletions(-) diff --git a/libavcodec/avcodec.h b/libavcodec/avcodec.h index f94a73c..c6235ad 100644 ---

[libav-devel] [PATCH 14/41] lavc: Drop deprecated vdpau buffer fields

2016-12-05 Thread Vittorio Giovara
Deprecated in 07/2013. --- libavcodec/vdpau.h | 44 libavcodec/version.h | 3 --- 2 files changed, 47 deletions(-) diff --git a/libavcodec/vdpau.h b/libavcodec/vdpau.h index 67f53a5..c446d6f 100644 --- a/libavcodec/vdpau.h +++ b/libavcodec/vdpau.h

[libav-devel] [PATCH 26/41] lavc: Drop deprecated maximum number of b-frames symbol

2016-12-05 Thread Vittorio Giovara
Deprecated in 10/2013. --- libavcodec/avcodec.h | 7 --- libavcodec/version.h | 3 --- 2 files changed, 10 deletions(-) diff --git a/libavcodec/avcodec.h b/libavcodec/avcodec.h index 36be2f8..733ed04 100644 --- a/libavcodec/avcodec.h +++ b/libavcodec/avcodec.h @@ -706,13 +706,6 @@ typedef

[libav-devel] [PATCH 23/41] lavc: Drop deprecated error rate option

2016-12-05 Thread Vittorio Giovara
Deprecated in 10/2013. --- libavcodec/avcodec.h | 9 - libavcodec/mpegvideo_enc.c | 7 --- libavcodec/options_table.h | 3 --- libavcodec/version.h | 3 --- 4 files changed, 22 deletions(-) diff --git a/libavcodec/avcodec.h b/libavcodec/avcodec.h index 1bcaf81..3aae707

[libav-devel] [PATCH 05/41] lavfi: Drop deprecated filter registration

2016-12-05 Thread Vittorio Giovara
Deprecated in 04/2013. --- libavfilter/avfilter.c | 11 --- libavfilter/avfilter.h | 18 -- libavfilter/version.h | 3 --- 3 files changed, 32 deletions(-) diff --git a/libavfilter/avfilter.c b/libavfilter/avfilter.c index 439eee4..3ae7a59 100644 ---

[libav-devel] [PATCH 17/41] lavc: Drop deprecated debug mv functionality

2016-12-05 Thread Vittorio Giovara
Deprecated in 10/2013. --- libavcodec/avcodec.h | 21 - libavcodec/options_table.h | 13 - libavcodec/version.h | 3 --- 3 files changed, 37 deletions(-) diff --git a/libavcodec/avcodec.h b/libavcodec/avcodec.h index 5109914..cbc7c69 100644 ---

[libav-devel] [PATCH 00/41] Post release version bump

2016-12-05 Thread Vittorio Giovara
Hello, as per tradition, now that we released major version of Libav, it is time to look back and delete any deprecated API memeber that is unused. This will simplify the code in many places and will fullfill our promise to maintainers to keep the code lean and without cruft. Contrary to

[libav-devel] [PATCH 15/41] lavc: Drop deprecated voxware codec entry

2016-12-05 Thread Vittorio Giovara
Deprecated in 08/2013. --- libavcodec/avcodec.h| 3 --- libavcodec/codec_desc.c | 9 - libavcodec/version.h| 3 --- 3 files changed, 15 deletions(-) diff --git a/libavcodec/avcodec.h b/libavcodec/avcodec.h index 561323c..5f6e04b 100644 --- a/libavcodec/avcodec.h +++

[libav-devel] [PATCH 12/41] lavc: Drop deprecated lowres option

2016-12-05 Thread Vittorio Giovara
Deprecated in 04/2013. --- libavcodec/avcodec.h | 14 -- libavcodec/version.h | 3 --- 2 files changed, 17 deletions(-) diff --git a/libavcodec/avcodec.h b/libavcodec/avcodec.h index 6ad2382..ab848a5 100644 --- a/libavcodec/avcodec.h +++ b/libavcodec/avcodec.h @@ -2780,17 +2780,6 @@

[libav-devel] [PATCH 13/41] lavc: Drop deprecated vdpau codec capability

2016-12-05 Thread Vittorio Giovara
Deprecated in 07/2013. --- libavcodec/avcodec.h | 6 -- libavcodec/vdpau.h | 34 -- libavcodec/version.h | 3 --- 3 files changed, 43 deletions(-) diff --git a/libavcodec/avcodec.h b/libavcodec/avcodec.h index ab848a5..561323c 100644 ---

[libav-devel] [PATCH 30/41] lavc: Drop deprecated sh4 architecture symbols

2016-12-05 Thread Vittorio Giovara
Deprecated in 01/2014. --- libavcodec/avcodec.h | 3 --- libavcodec/options_table.h | 3 --- libavcodec/version.h | 3 --- 3 files changed, 9 deletions(-) diff --git a/libavcodec/avcodec.h b/libavcodec/avcodec.h index 1b72434..69e3eec 100644 --- a/libavcodec/avcodec.h +++

[libav-devel] [PATCH 33/41] lavc: Drop deprecated xvidmmx symbols

2016-12-05 Thread Vittorio Giovara
Deprecated in 08/2014. --- libavcodec/avcodec.h | 3 --- libavcodec/options_table.h | 3 --- libavcodec/version.h | 3 --- 3 files changed, 9 deletions(-) diff --git a/libavcodec/avcodec.h b/libavcodec/avcodec.h index c6235ad..0f83044 100644 --- a/libavcodec/avcodec.h +++

[libav-devel] [PATCH 31/41] lavc: Drop deprecated sparc architecture symbols

2016-12-05 Thread Vittorio Giovara
Deprecated in 01/2014. --- libavcodec/avcodec.h | 3 --- libavcodec/version.h | 3 --- 2 files changed, 6 deletions(-) diff --git a/libavcodec/avcodec.h b/libavcodec/avcodec.h index 69e3eec..f94a73c 100644 --- a/libavcodec/avcodec.h +++ b/libavcodec/avcodec.h @@ -2639,9 +2639,6 @@ typedef struct

[libav-devel] [PATCH 24/41] lavc: Drop deprecated qscale type symbols

2016-12-05 Thread Vittorio Giovara
Deprecated in 10/2013. --- libavcodec/avcodec.h | 7 --- libavcodec/version.h | 3 --- 2 files changed, 10 deletions(-) diff --git a/libavcodec/avcodec.h b/libavcodec/avcodec.h index 3aae707..6bf1576 100644 --- a/libavcodec/avcodec.h +++ b/libavcodec/avcodec.h @@ -1154,13 +1154,6 @@ typedef

[libav-devel] [PATCH 40/41] lavu: Drop deprecated xvmc pixel formats

2016-12-05 Thread Vittorio Giovara
Deprecated in 11/2013. --- libavutil/pixdesc.c | 10 -- libavutil/pixfmt.h | 4 libavutil/version.h | 3 --- 3 files changed, 17 deletions(-) diff --git a/libavutil/pixdesc.c b/libavutil/pixdesc.c index 1e54462..5ce6c42 100644 --- a/libavutil/pixdesc.c +++ b/libavutil/pixdesc.c

[libav-devel] [PATCH 20/41] lavc: Drop deprecated extended aspect ratio symbol

2016-12-05 Thread Vittorio Giovara
Deprecated in 10/2013. --- libavcodec/avcodec.h | 4 libavcodec/h263.h| 2 -- libavcodec/version.h | 3 --- 3 files changed, 9 deletions(-) diff --git a/libavcodec/avcodec.h b/libavcodec/avcodec.h index 16f2a7a..81de75f 100644 --- a/libavcodec/avcodec.h +++ b/libavcodec/avcodec.h @@

[libav-devel] [PATCH 35/41] lavc: Drop deprecated normalize aqp option

2016-12-05 Thread Vittorio Giovara
Deprecated in 04/2014. --- libavcodec/avcodec.h | 7 --- libavcodec/mpegvideo_enc.c | 7 --- libavcodec/options_table.h | 3 --- libavcodec/version.h | 3 --- 4 files changed, 20 deletions(-) diff --git a/libavcodec/avcodec.h b/libavcodec/avcodec.h index 073250a..4465ae7

[libav-devel] [PATCH 19/41] lavc: Drop deprecated workaround for old msmpeg4 detection

2016-12-05 Thread Vittorio Giovara
Deprecated in 10/2013. --- libavcodec/avcodec.h | 3 --- libavcodec/options_table.h | 3 --- libavcodec/version.h | 3 --- 3 files changed, 9 deletions(-) diff --git a/libavcodec/avcodec.h b/libavcodec/avcodec.h index 026758f..16f2a7a 100644 --- a/libavcodec/avcodec.h +++

[libav-devel] [PATCH 18/41] lavc: Drop deprecated workaround for illegal ac_vlc

2016-12-05 Thread Vittorio Giovara
Deprecated in 10/2013. --- libavcodec/avcodec.h | 3 --- libavcodec/options_table.h | 3 --- libavcodec/version.h | 3 --- 3 files changed, 9 deletions(-) diff --git a/libavcodec/avcodec.h b/libavcodec/avcodec.h index cbc7c69..026758f 100644 --- a/libavcodec/avcodec.h +++

Re: [libav-devel] [PATCH 02/13] configure: Separate package name and version requirements in helper functions

2016-12-05 Thread Luca Barbato
On 29/11/2016 19:34, Diego Biurrun wrote: > The unadorned package name is needed to derive package-related variable names. > --- > configure | 14 -- > 1 file changed, 8 insertions(+), 6 deletions(-) > Seems fine ___ libav-devel mailing

Re: [libav-devel] [PATCH 03/13] configure: Handle dxva2 optional components in the standard way

2016-12-05 Thread Luca Barbato
On 29/11/2016 19:34, Diego Biurrun wrote: > --- > > This adds -lole32 to the general extralibs, but that goes away at the > end of the series. > > configure | 9 - > 1 file changed, 4 insertions(+), 5 deletions(-) > Should not hurt. ___

Re: [libav-devel] [PATCH 06/13] configure: Add missing cuda dependency to nvenc

2016-12-05 Thread Luca Barbato
On 29/11/2016 19:34, Diego Biurrun wrote: > --- > configure | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/configure b/configure > index eb3dc7a..aab5a68 100755 > --- a/configure > +++ b/configure > @@ -2190,7 +2190,7 @@ wmv3_vaapi_hwaccel_select="vc1_vaapi_hwaccel" >

Re: [libav-devel] [PATCH 1/3] build: Create a component for MPEG audio header decoding

2016-12-05 Thread Diego Biurrun
On Sat, Dec 03, 2016 at 05:46:36PM -0500, Vittorio Giovara wrote: > On Sat, Dec 3, 2016 at 9:16 AM, Diego Biurrun wrote: > > Fixes standalone compilation of the libmp3lame encoder. > > --- > > configure | 5 - > > libavcodec/Makefile | 10 -- > > 2 files

Re: [libav-devel] [PATCH] configure: Simplify OMX check

2016-12-05 Thread Diego Biurrun
On Sun, Dec 04, 2016 at 11:20:51PM +0200, Martin Storsjö wrote: > On Sun, 4 Dec 2016, Diego Biurrun wrote: > >--- a/configure > >+++ b/configure > >@@ -2190,6 +2190,7 @@ nvenc_deps_any="dlopen LoadLibrary" > >nvenc_extralibs='$ldl' > >omx_deps="dlopen pthreads" > >omx_extralibs='$ldl' >

Re: [libav-devel] [PATCH 04/13] configure: Disentangle vfw32 and user32 lib handling

2016-12-05 Thread Luca Barbato
On 29/11/2016 19:34, Diego Biurrun wrote: > --- > configure | 8 +--- > 1 file changed, 5 insertions(+), 3 deletions(-) > Ok if tested. ___ libav-devel mailing list libav-devel@libav.org https://lists.libav.org/mailman/listinfo/libav-devel

Re: [libav-devel] [PATCH 13/13] build: Add EXTRALIBS to TOOLS linker command

2016-12-05 Thread Luca Barbato
On 29/11/2016 19:34, Diego Biurrun wrote: > EXTRALIBS contains general and platform-specific extra libraries > that should be part of all linker commands. > --- > > This fixes linking the TOOLS on Symbian. > > Makefile | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git

[libav-devel] [PATCH] configure: Move COMPONENT_LIST to the bottom of CONFIG_LIST

2016-12-05 Thread Diego Biurrun
This ensures that dependencies are resolved correctly. COMPONENT_LIST can contain parts that depend on previous entries of CONFIG_LIST. --- This fixes the issue that Martin noticed with omx_rpi and the actual omx encoders not getting enabled. configure | 3 ++- 1 file changed, 2 insertions(+),

Re: [libav-devel] [PATCH 04/13] configure: Disentangle vfw32 and user32 lib handling

2016-12-05 Thread Hendrik Leppkes
On Tue, Nov 29, 2016 at 7:34 PM, Diego Biurrun wrote: > --- > configure | 8 +--- > 1 file changed, 5 insertions(+), 3 deletions(-) > > diff --git a/configure b/configure > index 18cec1a..74d89e2 100755 > --- a/configure > +++ b/configure > @@ -2382,7 +2382,6 @@