[FFmpeg-devel] [PATCH] configure: Use pkg-config for libkvazaar.

2015-08-17 Thread Arttu Ylä-Outinen
Signed-off-by: Arttu Ylä-Outinen --- configure |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure b/configure index 55cc7fb..3fa37b7 100755 --- a/configure +++ b/configure @@ -5226,7 +5226,7 @@ enabled libgsm&& { for gsm_hdr in "gsm.h" "gsm/gsm.h"; do

Re: [FFmpeg-devel] [PATCH 02/13] avfilter: add missing FF_API_AVFILTERPAD_PUBLIC guard

2015-08-17 Thread Michael Niedermayer
On Sat, Aug 08, 2015 at 01:31:51PM +0200, Andreas Cadhalpun wrote: > Signed-off-by: Andreas Cadhalpun > --- > libavfilter/avfilter.c | 2 ++ > 1 file changed, 2 insertions(+) tools/graph2dot fails to build without FF_API_AVFILTERPAD_PUBLIC it seems [...] -- Michael GnuPG fingerprint: 9FF21

Re: [FFmpeg-devel] [PATCH 1/3] Move ff_dlog from lavc to lavu.

2015-08-17 Thread Michael Niedermayer
On Mon, Aug 17, 2015 at 08:45:51PM -0400, Ronald S. Bultje wrote: > --- > libavcodec/internal.h | 6 -- > libavutil/internal.h | 6 ++ > 2 files changed, 6 insertions(+), 6 deletions(-) LGTM thx [...] -- Michael GnuPG fingerprint: 9FF2128B147EF6730BADF133611EC787040B0FAB Democrac

Re: [FFmpeg-devel] [PATCH 3/6] lavc: deprecate -ab as part of FF_API_OLD_AVOPTIONS.

2015-08-17 Thread Michael Niedermayer
On Mon, Aug 17, 2015 at 01:38:19PM -0400, Ronald S. Bultje wrote: > Hi, > > On Mon, Aug 17, 2015 at 1:12 PM, Michael Niedermayer > wrote: > > > On Mon, Aug 17, 2015 at 11:52:16AM -0400, Ronald S. Bultje wrote: > > > --- > > > libavcodec/options_table.h | 2 ++ > > > 1 file changed, 2 insertions

[FFmpeg-devel] [PATCH 3/3] Replace av_dlog with ff_dlog.

2015-08-17 Thread Ronald S. Bultje
ff_dlog checks compilability, and is non-public. av_dlog is deprecated and no longer exists if FF_API_DLOG=0. --- ffmpeg.c| 2 +- libavcodec/ccaption_dec.c | 13 +++-- libavcodec/proresdec2.c | 9 + libavdevice/lavfi.c | 7 --- libavfilter/s

ffmpeg-devel@ffmpeg.org

2015-08-17 Thread Ronald S. Bultje
This fixes compilation with FF_API_UNUSED_MEMBERS=0. --- libavcodec/mpeg4videodec.c | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/libavcodec/mpeg4videodec.c b/libavcodec/mpeg4videodec.c index 9283a2f..f15747f 100644 --- a/libavcodec/mpeg4videodec.c +++ b/libavcodec/mpeg4

[FFmpeg-devel] [PATCH 1/3] Move ff_dlog from lavc to lavu.

2015-08-17 Thread Ronald S. Bultje
--- libavcodec/internal.h | 6 -- libavutil/internal.h | 6 ++ 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/libavcodec/internal.h b/libavcodec/internal.h index 0daf669..f93a196 100644 --- a/libavcodec/internal.h +++ b/libavcodec/internal.h @@ -48,12 +48,6 @@ #define FF_

[FFmpeg-devel] [PATCH] lavfi: add error message to help users convert to new lavfi syntax.

2015-08-17 Thread Ronald S. Bultje
--- libavfilter/avfilter.c | 13 - libavfilter/version.h | 3 +++ 2 files changed, 15 insertions(+), 1 deletion(-) diff --git a/libavfilter/avfilter.c b/libavfilter/avfilter.c index 7cc4334..4d833f0 100644 --- a/libavfilter/avfilter.c +++ b/libavfilter/avfilter.c @@ -895,7 +895,7 @@

Re: [FFmpeg-devel] [PATCH] avfilter/vsrc_testsrc: correct colors for smptebars

2015-08-17 Thread Kieran Kunhya
On 10 August 2015 at 17:38, Paul B Mahol wrote: > On 8/9/15, Kieran Kunhya wrote: >> On 9 August 2015 at 12:20, Paul B Mahol wrote: >>> --- >>> libavfilter/vsrc_testsrc.c | 36 +++- >>> 1 file changed, 23 insertions(+), 13 deletions(-) >> >> I'll test the SD vers

Re: [FFmpeg-devel] GSoC Weekly report (libswscale)

2015-08-17 Thread Michael Niedermayer
On Mon, Aug 17, 2015 at 05:35:32PM -0300, Pedro Arthur wrote: > ops, added missing file. > > > 2015-08-17 17:31 GMT-03:00 Pedro Arthur : > > > > > > > 2015-08-17 0:19 GMT-03:00 Michael Niedermayer : > > > >> also feel free to split the batch addition into a seperate commit > >> (should be easy a

[FFmpeg-devel] [PATCH] ffmpeg_opt: introduce compatibility -ab option.

2015-08-17 Thread Ronald S. Bultje
--- ffmpeg_opt.c | 4 1 file changed, 4 insertions(+) diff --git a/ffmpeg_opt.c b/ffmpeg_opt.c index e923a19..effeaf1 100644 --- a/ffmpeg_opt.c +++ b/ffmpeg_opt.c @@ -3328,6 +3328,10 @@ const OptionDef options[] = { "force data codec ('copy' to copy stream)", "codec" }, { "dn",

Re: [FFmpeg-devel] [PATCH 1/2] Prepare for removal of obsolete FF_IDCT_* members.

2015-08-17 Thread Ronald S. Bultje
Hi, On Mon, Aug 17, 2015 at 5:45 PM, wm4 wrote: > On Mon, 17 Aug 2015 15:41:03 -0400 > "Ronald S. Bultje" wrote: > > > --- > > libavcodec/avcodec.h | 2 -- > > libavcodec/avdct.c | 2 ++ > > libavcodec/options_table.h | 2 -- > > 3 files changed, 2 insertions(+), 4 deletions(-) >

Re: [FFmpeg-devel] [PATCH 4/6] fate: explicitly specify audio bitrate for adpcm/mp2fixed tests.

2015-08-17 Thread James Almer
On 17/08/15 12:52 PM, Ronald S. Bultje wrote: > They picked up defaults, which changes from 128 to 200 when we remove > FF_API_OLD_AVOPTIONS. > --- > tests/fate/acodec.mak | 3 ++- > 1 file changed, 2 insertions(+), 1 deletion(-) > > diff --git a/tests/fate/acodec.mak b/tests/fate/acodec.mak > in

Re: [FFmpeg-devel] [PATCH 2/2] Comment out last use of FF_DEBUG_GENPTS.

2015-08-17 Thread Michael Niedermayer
On Mon, Aug 17, 2015 at 05:22:46PM -0400, Ronald S. Bultje wrote: > Hi, > > On Mon, Aug 17, 2015 at 5:17 PM, Michael Niedermayer > wrote: > > > On Mon, Aug 17, 2015 at 03:41:04PM -0400, Ronald S. Bultje wrote: > > > --- > > > libavcodec/mpeg4videodec.c | 4 +--- > > > 1 file changed, 1 insertio

Re: [FFmpeg-devel] [PATCH] libvpxenc: make flags i64 instead of dbl.

2015-08-17 Thread James Zern
On Mon, Aug 17, 2015 at 2:11 PM, Ronald S. Bultje wrote: > --- > libavcodec/libvpxenc.c | 4 ++-- > 1 file changed, 2 insertions(+), 2 deletions(-) > lgtm > diff --git a/libavcodec/libvpxenc.c b/libavcodec/libvpxenc.c > index 58e8f5d..5f39783 100644 > --- a/libavcodec/libvpxenc.c > +++ b/libavc

Re: [FFmpeg-devel] [PATCH] libvpxenc: make flags i64 instead of dbl.

2015-08-17 Thread wm4
On Mon, 17 Aug 2015 17:11:07 -0400 "Ronald S. Bultje" wrote: > --- > libavcodec/libvpxenc.c | 4 ++-- > 1 file changed, 2 insertions(+), 2 deletions(-) > > diff --git a/libavcodec/libvpxenc.c b/libavcodec/libvpxenc.c > index 58e8f5d..5f39783 100644 > --- a/libavcodec/libvpxenc.c > +++ b/libavco

Re: [FFmpeg-devel] [PATCH] fate: add -fflags +bitexact in a few places.

2015-08-17 Thread wm4
On Mon, 17 Aug 2015 15:47:29 -0400 "Ronald S. Bultje" wrote: > This improves results after FF_API_LAVF_BITEXACT=0. It still doesn't > pass, because of mov rtphint track which I don't understand (yet). > --- > tests/fate/ffmpeg.mak | 10 +- > 1 file changed, 5 insertions(+), 5 deletions(-

Re: [FFmpeg-devel] [PATCH 1/2] Prepare for removal of obsolete FF_IDCT_* members.

2015-08-17 Thread wm4
On Mon, 17 Aug 2015 15:41:03 -0400 "Ronald S. Bultje" wrote: > --- > libavcodec/avcodec.h | 2 -- > libavcodec/avdct.c | 2 ++ > libavcodec/options_table.h | 2 -- > 3 files changed, 2 insertions(+), 4 deletions(-) > > diff --git a/libavcodec/avcodec.h b/libavcodec/avcodec.h > ind

Re: [FFmpeg-devel] [PATCH 5/6] Put FF_API_OLD_AVOPTIONS under last use of av_opt_set_defaults2().

2015-08-17 Thread wm4
On Mon, 17 Aug 2015 20:10:09 +0200 Michael Niedermayer wrote: > On Mon, Aug 17, 2015 at 01:44:43PM -0400, Ronald S. Bultje wrote: > > Hi, > > > > On Mon, Aug 17, 2015 at 1:35 PM, Michael Niedermayer > > wrote: > > > > > On Mon, Aug 17, 2015 at 11:52:18AM -0400, Ronald S. Bultje wrote: > > > >

Re: [FFmpeg-devel] [PATCH] fate: move -flags +mv0 -> -mpv_flags +mv0.

2015-08-17 Thread James Almer
On 17/08/15 5:09 PM, Ronald S. Bultje wrote: > Fixes associated fate tests when FF_API_MV0=0. fate-vsynth passes so LGTM ___ ffmpeg-devel mailing list ffmpeg-devel@ffmpeg.org http://ffmpeg.org/mailman/listinfo/ffmpeg-devel

Re: [FFmpeg-devel] [RFC]lavf/mpegtsenc: Allow muxing jpeg2000

2015-08-17 Thread wm4
On Mon, 17 Aug 2015 17:10:44 +0200 Carl Eugen Hoyos wrote: > Hi! > > John Högberg has no objections against this patch but I don't know > how to test (except with FFmpeg). > > Please comment, Carl Eugen Please make sure that it conforms to the standard. FFmpeg eating it isn't good enough. __

Re: [FFmpeg-devel] [PATCH 2/2] Comment out last use of FF_DEBUG_GENPTS.

2015-08-17 Thread Ronald S. Bultje
Hi, On Mon, Aug 17, 2015 at 5:17 PM, Michael Niedermayer wrote: > On Mon, Aug 17, 2015 at 03:41:04PM -0400, Ronald S. Bultje wrote: > > --- > > libavcodec/mpeg4videodec.c | 4 +--- > > 1 file changed, 1 insertion(+), 3 deletions(-) > > > > diff --git a/libavcodec/mpeg4videodec.c b/libavcodec/mp

Re: [FFmpeg-devel] [PATCH] lavc/ffmpeg: put FF_API_DEBUG_MV around remaining uses of FF_DEBUG_VIS_QP/MB_TYPE.

2015-08-17 Thread wm4
On Mon, 17 Aug 2015 09:13:58 -0400 "Ronald S. Bultje" wrote: > Hi, > > On Mon, Aug 17, 2015 at 8:44 AM, Michael Niedermayer > wrote: > > > On Mon, Aug 17, 2015 at 08:01:56AM -0400, Ronald S. Bultje wrote: > > > --- > > > ffmpeg.c | 6 +- > > > libavcodec/mpegvideo.c

Re: [FFmpeg-devel] [PATCH 2/2] Comment out last use of FF_DEBUG_GENPTS.

2015-08-17 Thread Michael Niedermayer
On Mon, Aug 17, 2015 at 03:41:04PM -0400, Ronald S. Bultje wrote: > --- > libavcodec/mpeg4videodec.c | 4 +--- > 1 file changed, 1 insertion(+), 3 deletions(-) > > diff --git a/libavcodec/mpeg4videodec.c b/libavcodec/mpeg4videodec.c > index 55ce5d8..d716626 100644 > --- a/libavcodec/mpeg4videodec

[FFmpeg-devel] [PATCH] libvpxenc: make flags i64 instead of dbl.

2015-08-17 Thread Ronald S. Bultje
--- libavcodec/libvpxenc.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libavcodec/libvpxenc.c b/libavcodec/libvpxenc.c index 58e8f5d..5f39783 100644 --- a/libavcodec/libvpxenc.c +++ b/libavcodec/libvpxenc.c @@ -986,8 +986,8 @@ static int vp8_encode(AVCodecContext *avctx

[FFmpeg-devel] [PATCH 3/3] lavu: comment out wrong value check in get_version() after api bump.

2015-08-17 Thread Ronald S. Bultje
--- libavutil/utils.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/libavutil/utils.c b/libavutil/utils.c index 2e3b1e0..e337c83 100644 --- a/libavutil/utils.c +++ b/libavutil/utils.c @@ -41,7 +41,9 @@ unsigned avutil_version(void) if (checks_done) return LIBAVUTIL_VERSION_IN

[FFmpeg-devel] [PATCH 2/3] lavc: move vdpau decoders under FF_API_VDPAU.

2015-08-17 Thread Ronald S. Bultje
From: wm4 Signed-off-by: Ronald S. Bultje --- libavcodec/allcodecs.c | 10 ++ libavcodec/h264.c | 2 +- libavcodec/mpeg12dec.c | 8 libavcodec/mpeg4videodec.c | 2 +- libavcodec/vc1dec.c| 4 ++-- libavcodec/vdpau.c | 8 6 files cha

[FFmpeg-devel] [PATCH 1/3] lavc: put remaining bits of vdpau-in-decoder under FF_API_CAP_VDPAU.

2015-08-17 Thread Ronald S. Bultje
--- libavcodec/error_resilience.c | 2 ++ libavcodec/h263dec.c | 2 ++ libavcodec/h264.c | 4 libavcodec/h264_picture.c | 4 libavcodec/h264_slice.c | 16 libavcodec/mpeg12dec.c| 20 +--- libavcodec/mpegpicture.c

Re: [FFmpeg-devel] [PATCH] Replace all av_dlog() with av_log(AV_LOG_TRACE).

2015-08-17 Thread Clément Bœsch
On Mon, Aug 17, 2015 at 05:01:10PM -0400, Ronald S. Bultje wrote: > Hi, > > On Mon, Aug 17, 2015 at 5:00 PM, Clément Bœsch wrote: > > > On Mon, Aug 17, 2015 at 04:56:10PM -0400, Ronald S. Bultje wrote: > > > Hi, > > > > > > On Mon, Aug 17, 2015 at 2:26 PM, Michael Niedermayer > > > > > wrote: >

Re: [FFmpeg-devel] [PATCH] Replace all av_dlog() with av_log(AV_LOG_TRACE).

2015-08-17 Thread Ronald S. Bultje
Hi, On Mon, Aug 17, 2015 at 5:00 PM, Clément Bœsch wrote: > On Mon, Aug 17, 2015 at 04:56:10PM -0400, Ronald S. Bultje wrote: > > Hi, > > > > On Mon, Aug 17, 2015 at 2:26 PM, Michael Niedermayer > > > wrote: > > > > > On Mon, Aug 17, 2015 at 12:00:21PM -0400, Ronald S. Bultje wrote: > > > [...]

Re: [FFmpeg-devel] [PATCH] Replace all av_dlog() with av_log(AV_LOG_TRACE).

2015-08-17 Thread Clément Bœsch
On Mon, Aug 17, 2015 at 04:56:10PM -0400, Ronald S. Bultje wrote: > Hi, > > On Mon, Aug 17, 2015 at 2:26 PM, Michael Niedermayer > wrote: > > > On Mon, Aug 17, 2015 at 12:00:21PM -0400, Ronald S. Bultje wrote: > > [...] > > > diff --git a/libavfilter/vsrc_life.c b/libavfilter/vsrc_life.c > > > i

[FFmpeg-devel] [PATCH] fate: rename -error option to -error_rate.

2015-08-17 Thread Ronald S. Bultje
This fixes fate when FF_API_ERROR_RATE=0. --- tests/fate/vcodec.mak | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/fate/vcodec.mak b/tests/fate/vcodec.mak index 11eb4f7..d4d0df5 100644 --- a/tests/fate/vcodec.mak +++ b/tests/fate/vcodec.mak @@ -211,7 +211,7 @@ fate-vsynt

Re: [FFmpeg-devel] [PATCH] Replace all av_dlog() with av_log(AV_LOG_TRACE).

2015-08-17 Thread Ronald S. Bultje
Hi, On Mon, Aug 17, 2015 at 2:26 PM, Michael Niedermayer wrote: > On Mon, Aug 17, 2015 at 12:00:21PM -0400, Ronald S. Bultje wrote: > [...] > > diff --git a/libavfilter/vsrc_life.c b/libavfilter/vsrc_life.c > > index 47630ad..a56b163 100644 > > --- a/libavfilter/vsrc_life.c > > +++ b/libavfilter

Re: [FFmpeg-devel] GSoC Weekly report (libswscale)

2015-08-17 Thread Pedro Arthur
ops, added missing file. 2015-08-17 17:31 GMT-03:00 Pedro Arthur : > > > 2015-08-17 0:19 GMT-03:00 Michael Niedermayer : > >> also feel free to split the batch addition into a seperate commit >> (should be easy as you already have a versionn with and without) >> > Attached proper patchs. > > als

Re: [FFmpeg-devel] GSoC Weekly report (libswscale)

2015-08-17 Thread Pedro Arthur
2015-08-17 0:19 GMT-03:00 Michael Niedermayer : > also feel free to split the batch addition into a seperate commit > (should be easy as you already have a versionn with and without) > Attached proper patchs. also, please send me your public ssh key, i think you should have > direct write access

Re: [FFmpeg-devel] [PATCH] Replace all av_dlog() with av_log(AV_LOG_TRACE).

2015-08-17 Thread wm4
On Mon, 17 Aug 2015 20:31:57 +0200 Michael Niedermayer wrote: > On Mon, Aug 17, 2015 at 12:00:21PM -0400, Ronald S. Bultje wrote: > [...] > > diff --git a/libavformat/mpegts.c b/libavformat/mpegts.c > > index 3c1fcdd..a2522ef 100644 > > --- a/libavformat/mpegts.c > > +++ b/libavformat/mpegts.c >

Re: [FFmpeg-devel] [PATCH 4/4] vaapi: add interfaces to properly initialize context.

2015-08-17 Thread wm4
On Mon, 17 Aug 2015 19:17:53 +0200 Gwenole Beauchesne wrote: > Add av_vaapi_context_init() and av_vaapi_context_alloc() helper functions > so that to properly initialize the vaapi_context structure, and allow for > future extensions without breaking the API/ABI. > > The new version and flags fie

Re: [FFmpeg-devel] [PATCH 3/4] vaapi: fix usage of invalid buffer ids.

2015-08-17 Thread wm4
On Mon, 17 Aug 2015 19:17:52 +0200 Gwenole Beauchesne wrote: > Invalid buffer ids are defined by VA_INVALID_ID. Use that through out > vaapi_*.c support files now that we have private data initialized and > managed by libavcodec. Previously, the only requirement for the public > vaapi_context str

[FFmpeg-devel] [PATCH] fate: move -flags +mv0 -> -mpv_flags +mv0.

2015-08-17 Thread Ronald S. Bultje
Fixes associated fate tests when FF_API_MV0=0. --- tests/fate/vcodec.mak | 15 --- 1 file changed, 8 insertions(+), 7 deletions(-) diff --git a/tests/fate/vcodec.mak b/tests/fate/vcodec.mak index 4e4f0ed..11eb4f7 100644 --- a/tests/fate/vcodec.mak +++ b/tests/fate/vcodec.mak @@ -164,8

Re: [FFmpeg-devel] [PATCH 2/4] vaapi: streamline public context structure.

2015-08-17 Thread wm4
On Mon, 17 Aug 2015 19:17:51 +0200 Gwenole Beauchesne wrote: > Move libavcodec managed objects from the public struct vaapi_context > to a new privately owned FFVAContext. This is done so that to clean up > and streamline the public structure, but also to prepare for new codec > support, thus req

Re: [FFmpeg-devel] [PATCH]lavf/mov: Support alac extradata in wave atom v2

2015-08-17 Thread Carl Eugen Hoyos
Michael Niedermayer niedermayer.cc> writes: > +ffio_ensure_seekback(pb, 8); > +buffer = avio_rb64(pb); > +atom.size -= 8; > +if ( (buffer & 0x) == MKBETAG('f','r','m','a') > +&& buffer >> 32 <= atom.size > +&

Re: [FFmpeg-devel] [PATCH 1/4] vaapi: define a single pixel format for VA-API (AV_PIX_FMT_VAAPI).

2015-08-17 Thread wm4
On Mon, 17 Aug 2015 19:17:50 +0200 Gwenole Beauchesne wrote: > Deprecate older VA pixel formats (MOCO, IDCT) as it is now very unlikely > to ever be useful in the future. Only keep plain AV_PIX_FMT_VAAPI format > that is aliased to the older VLD variant. > > Signed-off-by: Gwenole Beauchesne >

[FFmpeg-devel] [PATCH] fate: add -fflags +bitexact in a few places.

2015-08-17 Thread Ronald S. Bultje
This improves results after FF_API_LAVF_BITEXACT=0. It still doesn't pass, because of mov rtphint track which I don't understand (yet). --- tests/fate/ffmpeg.mak | 10 +- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/tests/fate/ffmpeg.mak b/tests/fate/ffmpeg.mak index 6af10

[FFmpeg-devel] [PATCH 2/2] Comment out last use of FF_DEBUG_GENPTS.

2015-08-17 Thread Ronald S. Bultje
--- libavcodec/mpeg4videodec.c | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/libavcodec/mpeg4videodec.c b/libavcodec/mpeg4videodec.c index 55ce5d8..d716626 100644 --- a/libavcodec/mpeg4videodec.c +++ b/libavcodec/mpeg4videodec.c @@ -2320,9 +2320,7 @@ static int decode_vop_

[FFmpeg-devel] [PATCH 1/2] Prepare for removal of obsolete FF_IDCT_* members.

2015-08-17 Thread Ronald S. Bultje
--- libavcodec/avcodec.h | 2 -- libavcodec/avdct.c | 2 ++ libavcodec/options_table.h | 2 -- 3 files changed, 2 insertions(+), 4 deletions(-) diff --git a/libavcodec/avcodec.h b/libavcodec/avcodec.h index 6b824d5..6f9b026 100644 --- a/libavcodec/avcodec.h +++ b/libavcodec/avcodec.

Re: [FFmpeg-devel] [PATCH] Replace all av_dlog() with av_log(AV_LOG_TRACE).

2015-08-17 Thread Clément Bœsch
On Mon, Aug 17, 2015 at 12:00:21PM -0400, Ronald S. Bultje wrote: [...] > libavfilter/vf_palettegen.c | 10 ++ > libavfilter/vf_paletteuse.c | 4 ++-- At least one of them is in the performance relevant inner loop, so I'd prefer if you comment the av_log. [...] -- Clément B.

Re: [FFmpeg-devel] [PATCH] Replace all av_dlog() with av_log(AV_LOG_TRACE).

2015-08-17 Thread Michael Niedermayer
On Mon, Aug 17, 2015 at 12:00:21PM -0400, Ronald S. Bultje wrote: [...] > diff --git a/libavformat/mpegts.c b/libavformat/mpegts.c > index 3c1fcdd..a2522ef 100644 > --- a/libavformat/mpegts.c > +++ b/libavformat/mpegts.c > @@ -2458,7 +2458,7 @@ static int mpegts_probe(AVProbeData *p) > sumscor

Re: [FFmpeg-devel] [PATCH] Put remaining pieces of CODEC_FLAG_EMU_EDGE under FF_API_EMU_EDGE.

2015-08-17 Thread Michael Niedermayer
On Mon, Aug 17, 2015 at 02:19:59PM -0400, Ronald S. Bultje wrote: > On Mon, Aug 17, 2015 at 2:17 PM, Michael Niedermayer > wrote: > > > On Mon, Aug 17, 2015 at 12:25:47PM -0400, Ronald S. Bultje wrote: > > > The amv one probably looks suspicious, but since it's an intra-only > > > codec, I couldn

Re: [FFmpeg-devel] [PATCH] Replace all av_dlog() with av_log(AV_LOG_TRACE).

2015-08-17 Thread Michael Niedermayer
On Mon, Aug 17, 2015 at 12:00:21PM -0400, Ronald S. Bultje wrote: [...] > diff --git a/libavfilter/vsrc_life.c b/libavfilter/vsrc_life.c > index 47630ad..a56b163 100644 > --- a/libavfilter/vsrc_life.c > +++ b/libavfilter/vsrc_life.c > @@ -334,7 +334,7 @@ static void evolve(AVFilterContext *ctx) >

Re: [FFmpeg-devel] [PATCH 2/6] FF_OPT_TYPE_* -> AV_OPT_TYPE_*.

2015-08-17 Thread Michael Niedermayer
On Mon, Aug 17, 2015 at 01:34:11PM -0400, Ronald S. Bultje wrote: > Hi, > > On Mon, Aug 17, 2015 at 1:25 PM, Michael Niedermayer > wrote: > > > On Mon, Aug 17, 2015 at 11:52:15AM -0400, Ronald S. Bultje wrote: > > > --- > > > libavcodec/dvbsubdec.c | 6 +++--- > > > libavcodec/frwu.c

Re: [FFmpeg-devel] [PATCH] Put remaining pieces of CODEC_FLAG_EMU_EDGE under FF_API_EMU_EDGE.

2015-08-17 Thread Ronald S. Bultje
On Mon, Aug 17, 2015 at 2:17 PM, Michael Niedermayer wrote: > On Mon, Aug 17, 2015 at 12:25:47PM -0400, Ronald S. Bultje wrote: > > The amv one probably looks suspicious, but since it's an intra-only > > codec, I couldn't possibly imagine what it would use the edge for, > > and the vsyncht fate r

Re: [FFmpeg-devel] [PATCH] Put remaining pieces of CODEC_FLAG_EMU_EDGE under FF_API_EMU_EDGE.

2015-08-17 Thread Michael Niedermayer
On Mon, Aug 17, 2015 at 12:25:47PM -0400, Ronald S. Bultje wrote: > The amv one probably looks suspicious, but since it's an intra-only > codec, I couldn't possibly imagine what it would use the edge for, > and the vsyncht fate result doesn't change, so it's probably OK. > --- > ffmpeg_opt.c

Re: [FFmpeg-devel] [PATCH 5/6] Put FF_API_OLD_AVOPTIONS under last use of av_opt_set_defaults2().

2015-08-17 Thread Michael Niedermayer
On Mon, Aug 17, 2015 at 01:44:43PM -0400, Ronald S. Bultje wrote: > Hi, > > On Mon, Aug 17, 2015 at 1:35 PM, Michael Niedermayer > wrote: > > > On Mon, Aug 17, 2015 at 11:52:18AM -0400, Ronald S. Bultje wrote: > > > --- > > > libavcodec/options.c | 6 ++ > > > 1 file changed, 6 insertions(+

Re: [FFmpeg-devel] [PATCH 1/4] vaapi: define a single pixel format for VA-API (AV_PIX_FMT_VAAPI).

2015-08-17 Thread Ronald S. Bultje
Hi, On Mon, Aug 17, 2015 at 1:17 PM, Gwenole Beauchesne wrote: > Deprecate older VA pixel formats (MOCO, IDCT) as it is now very unlikely > to ever be useful in the future. Only keep plain AV_PIX_FMT_VAAPI format > that is aliased to the older VLD variant. > > Signed-off-by: Gwenole Beauchesne

Re: [FFmpeg-devel] [PATCH 5/6] Put FF_API_OLD_AVOPTIONS under last use of av_opt_set_defaults2().

2015-08-17 Thread Ronald S. Bultje
Hi, On Mon, Aug 17, 2015 at 1:35 PM, Michael Niedermayer wrote: > On Mon, Aug 17, 2015 at 11:52:18AM -0400, Ronald S. Bultje wrote: > > --- > > libavcodec/options.c | 6 ++ > > 1 file changed, 6 insertions(+) > > > > diff --git a/libavcodec/options.c b/libavcodec/options.c > > index 37f3792

Re: [FFmpeg-devel] [PATCH 3/6] lavc: deprecate -ab as part of FF_API_OLD_AVOPTIONS.

2015-08-17 Thread Ronald S. Bultje
Hi, On Mon, Aug 17, 2015 at 1:12 PM, Michael Niedermayer wrote: > On Mon, Aug 17, 2015 at 11:52:16AM -0400, Ronald S. Bultje wrote: > > --- > > libavcodec/options_table.h | 2 ++ > > 1 file changed, 2 insertions(+) > > googling for > ffmpeg "-ab" > has 332.000 matches > > ffmpeg "-b:a" > has 64

Re: [FFmpeg-devel] [PATCH 5/6] Put FF_API_OLD_AVOPTIONS under last use of av_opt_set_defaults2().

2015-08-17 Thread Michael Niedermayer
On Mon, Aug 17, 2015 at 11:52:18AM -0400, Ronald S. Bultje wrote: > --- > libavcodec/options.c | 6 ++ > 1 file changed, 6 insertions(+) > > diff --git a/libavcodec/options.c b/libavcodec/options.c > index 37f3792..ed4d826 100644 > --- a/libavcodec/options.c > +++ b/libavcodec/options.c > @@

Re: [FFmpeg-devel] [PATCH 2/6] FF_OPT_TYPE_* -> AV_OPT_TYPE_*.

2015-08-17 Thread Ronald S. Bultje
Hi, On Mon, Aug 17, 2015 at 1:25 PM, Michael Niedermayer wrote: > On Mon, Aug 17, 2015 at 11:52:15AM -0400, Ronald S. Bultje wrote: > > --- > > libavcodec/dvbsubdec.c | 6 +++--- > > libavcodec/frwu.c| 2 +- > > libavcodec/h264.c| 4 ++-- > > libavcodec/libvpxen

Re: [FFmpeg-devel] [PATCH 2/6] FF_OPT_TYPE_* -> AV_OPT_TYPE_*.

2015-08-17 Thread Michael Niedermayer
On Mon, Aug 17, 2015 at 11:52:15AM -0400, Ronald S. Bultje wrote: > --- > libavcodec/dvbsubdec.c | 6 +++--- > libavcodec/frwu.c| 2 +- > libavcodec/h264.c| 4 ++-- > libavcodec/libvpxenc.c | 6 +++--- > libavcodec/mpeg4videodec.c | 4 ++-- > libavcodec/s

Re: [FFmpeg-devel] [PATCH 4/4] vaapi: add interfaces to properly initialize context.

2015-08-17 Thread Gwenole Beauchesne
Hi, 2015-08-17 19:17 GMT+02:00 Gwenole Beauchesne : > Add av_vaapi_context_init() and av_vaapi_context_alloc() helper functions > so that to properly initialize the vaapi_context structure, and allow for > future extensions without breaking the API/ABI. > > The new version and flags fields are ins

[FFmpeg-devel] [PATCH 4/4] vaapi: add interfaces to properly initialize context.

2015-08-17 Thread Gwenole Beauchesne
Add av_vaapi_context_init() and av_vaapi_context_alloc() helper functions so that to properly initialize the vaapi_context structure, and allow for future extensions without breaking the API/ABI. The new version and flags fields are inserted after the last known user initialized field, and actuall

[FFmpeg-devel] [PATCH 3/4] vaapi: fix usage of invalid buffer ids.

2015-08-17 Thread Gwenole Beauchesne
Invalid buffer ids are defined by VA_INVALID_ID. Use that through out vaapi_*.c support files now that we have private data initialized and managed by libavcodec. Previously, the only requirement for the public vaapi_context struct was to be zero-initialized. This fixes support for 3rdparty VA dri

[FFmpeg-devel] [PATCH 1/4] vaapi: define a single pixel format for VA-API (AV_PIX_FMT_VAAPI).

2015-08-17 Thread Gwenole Beauchesne
Deprecate older VA pixel formats (MOCO, IDCT) as it is now very unlikely to ever be useful in the future. Only keep plain AV_PIX_FMT_VAAPI format that is aliased to the older VLD variant. Signed-off-by: Gwenole Beauchesne --- libavcodec/h263dec.c | 2 +- libavcodec/h264_slice.c | 2 +- li

[FFmpeg-devel] [PATCH 2/4] vaapi: streamline public context structure.

2015-08-17 Thread Gwenole Beauchesne
Move libavcodec managed objects from the public struct vaapi_context to a new privately owned FFVAContext. This is done so that to clean up and streamline the public structure, but also to prepare for new codec support, thus requiring new internal data to be added in there. The AVCodecContext.hwac

[FFmpeg-devel] [PATCH 0/4] vaapi: improvements & fixes to common infrastructure

2015-08-17 Thread Gwenole Beauchesne
Hi, This patch series contains a few changes I was wondering for some time now and had finally some time to work on recently. This is preparatory and minimal work in view to supporting other (WIP) changes. For convenience, I have placed the code here:

Re: [FFmpeg-devel] [PATCH 3/6] lavc: deprecate -ab as part of FF_API_OLD_AVOPTIONS.

2015-08-17 Thread Michael Niedermayer
On Mon, Aug 17, 2015 at 11:52:16AM -0400, Ronald S. Bultje wrote: > --- > libavcodec/options_table.h | 2 ++ > 1 file changed, 2 insertions(+) googling for ffmpeg "-ab" has 332.000 matches ffmpeg "-b:a" has 64.100 matches this patch is simply a bad idea [...] -- Michael GnuPG fingerprint

[FFmpeg-devel] [PATCH] Put remaining pieces of CODEC_FLAG_EMU_EDGE under FF_API_EMU_EDGE.

2015-08-17 Thread Ronald S. Bultje
The amv one probably looks suspicious, but since it's an intra-only codec, I couldn't possibly imagine what it would use the edge for, and the vsyncht fate result doesn't change, so it's probably OK. --- ffmpeg_opt.c | 2 ++ ffplay.c | 4 libavcodec/mjpegenc.c | 2 ++ li

[FFmpeg-devel] [PATCH] Replace all av_dlog() with av_log(AV_LOG_TRACE).

2015-08-17 Thread Ronald S. Bultje
--- ffmpeg.c | 15 --- libavcodec/ccaption_dec.c| 12 ++-- libavcodec/libzvbi-teletextdec.c | 8 libavcodec/proresdec2.c | 8 libavdevice/lavfi.c | 6 +++--- libavdevice/v4l.c| 4 ++-- l

[FFmpeg-devel] [PATCH 3/6] lavc: deprecate -ab as part of FF_API_OLD_AVOPTIONS.

2015-08-17 Thread Ronald S. Bultje
--- libavcodec/options_table.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/libavcodec/options_table.h b/libavcodec/options_table.h index 5376cbb..fd9c045 100644 --- a/libavcodec/options_table.h +++ b/libavcodec/options_table.h @@ -43,7 +43,9 @@ static const AVOption avcodec_options[]

[FFmpeg-devel] [PATCH 5/6] Put FF_API_OLD_AVOPTIONS under last use of av_opt_set_defaults2().

2015-08-17 Thread Ronald S. Bultje
--- libavcodec/options.c | 6 ++ 1 file changed, 6 insertions(+) diff --git a/libavcodec/options.c b/libavcodec/options.c index 37f3792..ed4d826 100644 --- a/libavcodec/options.c +++ b/libavcodec/options.c @@ -91,7 +91,9 @@ static const AVClass av_codec_context_class = { int avcodec_get_co

[FFmpeg-devel] [PATCH 6/6] fate: change lavf.ffm ref.

2015-08-17 Thread Ronald S. Bultje
(This should only be applied when we bump version.) Removing the -ab option changes the codec settings serialization, so the ffm ref changes whenever we bump version and remove -ab. --- tests/ref/lavf/ffm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/ref/lavf/ffm b/test

[FFmpeg-devel] [PATCH 4/6] fate: explicitly specify audio bitrate for adpcm/mp2fixed tests.

2015-08-17 Thread Ronald S. Bultje
They picked up defaults, which changes from 128 to 200 when we remove FF_API_OLD_AVOPTIONS. --- tests/fate/acodec.mak | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tests/fate/acodec.mak b/tests/fate/acodec.mak index c1e4c4e..4afc27a 100644 --- a/tests/fate/acodec.mak +++ b/

[FFmpeg-devel] [PATCH 1/6] options: mark av_get_{int, double, q} as deprecated.

2015-08-17 Thread Ronald S. Bultje
Convert last users to av_opt_get_*() counterparts. --- libavfilter/af_aresample.c | 17 + libavfilter/x86/vf_spp.c | 4 +++- libavutil/opt.h| 3 +++ 3 files changed, 15 insertions(+), 9 deletions(-) diff --git a/libavfilter/af_aresample.c b/libavfilter/af_aresample

[FFmpeg-devel] [PATCH 2/6] FF_OPT_TYPE_* -> AV_OPT_TYPE_*.

2015-08-17 Thread Ronald S. Bultje
--- libavcodec/dvbsubdec.c | 6 +++--- libavcodec/frwu.c| 2 +- libavcodec/h264.c| 4 ++-- libavcodec/libvpxenc.c | 6 +++--- libavcodec/mpeg4videodec.c | 4 ++-- libavcodec/s302m.c | 10 +- libavcodec/v210dec.c | 2 +- libavfor

Re: [FFmpeg-devel] [PATCH] options: mark av_get_{int, double, q} as deprecated.

2015-08-17 Thread Michael Niedermayer
On Mon, Aug 17, 2015 at 11:30:15AM -0400, Ronald S. Bultje wrote: > Hi, > > On Mon, Aug 17, 2015 at 9:20 AM, Michael Niedermayer > wrote: > > > On Mon, Aug 17, 2015 at 07:48:07AM -0400, Ronald S. Bultje wrote: > > > Hi, > > > > > > On Mon, Aug 17, 2015 at 6:40 AM, Michael Niedermayer > > > > >

Re: [FFmpeg-devel] [PATCH] options: mark av_get_{int, double, q} as deprecated.

2015-08-17 Thread Hendrik Leppkes
On Mon, Aug 17, 2015 at 5:30 PM, Ronald S. Bultje wrote: > Hi, > > On Mon, Aug 17, 2015 at 9:20 AM, Michael Niedermayer > wrote: > >> On Mon, Aug 17, 2015 at 07:48:07AM -0400, Ronald S. Bultje wrote: >> > Hi, >> > >> > On Mon, Aug 17, 2015 at 6:40 AM, Michael Niedermayer >> > > > wrote: >> > >> >

[FFmpeg-devel] [RFC]lavf/mpegtsenc: Allow muxing jpeg2000

2015-08-17 Thread Carl Eugen Hoyos
Hi! John Högberg has no objections against this patch but I don't know how to test (except with FFmpeg). Please comment, Carl Eugen diff --git a/libavformat/mpegtsenc.c b/libavformat/mpegtsenc.c index 45bab1c..76a1cc9 100644 --- a/libavformat/mpegtsenc.c +++ b/libavformat/mpegtsenc.c @@ -314,6 +

Re: [FFmpeg-devel] [PATCH] options: mark av_get_{int, double, q} as deprecated.

2015-08-17 Thread Ronald S. Bultje
Hi, On Mon, Aug 17, 2015 at 9:20 AM, Michael Niedermayer wrote: > On Mon, Aug 17, 2015 at 07:48:07AM -0400, Ronald S. Bultje wrote: > > Hi, > > > > On Mon, Aug 17, 2015 at 6:40 AM, Michael Niedermayer > > > wrote: > > > > > On Sun, Aug 16, 2015 at 05:45:55PM -0400, Ronald S. Bultje wrote: > > >

Re: [FFmpeg-devel] [PATCH] avfilter: add scale2ref filter

2015-08-17 Thread Michael Niedermayer
On Sat, Aug 15, 2015 at 06:55:52PM +0200, Michael Niedermayer wrote: > From: Michael Niedermayer > > TODO: docs > > This filter can be used to scale one stream to match another or based on > another, usefull to scale subtitles or other things to be overlayed > > Signed-off-by: Michael Niedermay

Re: [FFmpeg-devel] [PATCH] avformat: Remove use of AVFrac and AVStream->pts

2015-08-17 Thread Michael Niedermayer
On Mon, Aug 17, 2015 at 04:36:52PM +0200, Nicolas George wrote: > Le decadi 30 thermidor, an CCXXIII, Michael Niedermayer a écrit : > > From: Michael Niedermayer > > > > Move field to internal part of AVStream and struct to internal.h > > > > Signed-off-by: Michael Niedermayer > > --- > > liba

Re: [FFmpeg-devel] [libav-devel] [PATCH 5/6] Postpone API-incompatible changes until the next bump

2015-08-17 Thread Michael Niedermayer
On Mon, Aug 17, 2015 at 07:53:59AM -0400, Ronald S. Bultje wrote: > Hi, > > On Mon, Aug 17, 2015 at 12:06 AM, Michael Niedermayer < > mich...@niedermayer.cc> wrote: > > > On Sun, Aug 16, 2015 at 10:12:23PM +0200, Andreas Cadhalpun wrote: > > > Hi, > > > > > > On 16.08.2015 19:27, Ronald S. Bultje

Re: [FFmpeg-devel] [PATCH] avformat: Remove use of AVFrac and AVStream->pts

2015-08-17 Thread Nicolas George
Le decadi 30 thermidor, an CCXXIII, Michael Niedermayer a écrit : > From: Michael Niedermayer > > Move field to internal part of AVStream and struct to internal.h > > Signed-off-by: Michael Niedermayer > --- > libavformat/avformat.h |2 ++ > libavformat/internal.h | 12 > li

Re: [FFmpeg-devel] [PATCH] lavc/ffmpeg: put FF_API_DEBUG_MV around remaining uses of FF_DEBUG_VIS_QP/MB_TYPE.

2015-08-17 Thread Michael Niedermayer
On Mon, Aug 17, 2015 at 03:45:34PM +0200, Clément Bœsch wrote: > On Mon, Aug 17, 2015 at 03:31:16PM +0200, Michael Niedermayer wrote: > > On Mon, Aug 17, 2015 at 09:13:58AM -0400, Ronald S. Bultje wrote: > > > Hi, > > > > > > On Mon, Aug 17, 2015 at 8:44 AM, Michael Niedermayer > > > > > > wrote

Re: [FFmpeg-devel] [PATCH] options: mark av_get_{int, double, q} as deprecated.

2015-08-17 Thread Michael Niedermayer
On Mon, Aug 17, 2015 at 09:28:10AM -0400, Ronald S. Bultje wrote: > Hi, > > On Mon, Aug 17, 2015 at 9:20 AM, Michael Niedermayer > wrote: > > > On Mon, Aug 17, 2015 at 07:48:07AM -0400, Ronald S. Bultje wrote: > > > Hi, > > > > > > On Mon, Aug 17, 2015 at 6:40 AM, Michael Niedermayer > > > > >

[FFmpeg-devel] [PATCH] avformat: Remove use of AVFrac and AVStream->pts

2015-08-17 Thread Michael Niedermayer
From: Michael Niedermayer Move field to internal part of AVStream and struct to internal.h Signed-off-by: Michael Niedermayer --- libavformat/avformat.h |2 ++ libavformat/internal.h | 12 libavformat/mux.c | 22 ++ libavformat/utils.c|6 ++

Re: [FFmpeg-devel] [PATCH]lavc/mjpegdec: Detect more CMYK images

2015-08-17 Thread Carl Eugen Hoyos
Michael Niedermayer niedermayer.cc> writes: > > Attached patch fixes ticket #4772 for me. > > > > Please comment, Carl Eugen > > probably ok Patch applied. Thank you, Carl Eugen ___ ffmpeg-devel mailing list ffmpeg-devel@ffmpeg.org http://ffmpeg.or

Re: [FFmpeg-devel] [PATCH] lavc/ffmpeg: put FF_API_DEBUG_MV around remaining uses of FF_DEBUG_VIS_QP/MB_TYPE.

2015-08-17 Thread Clément Bœsch
On Mon, Aug 17, 2015 at 03:31:16PM +0200, Michael Niedermayer wrote: > On Mon, Aug 17, 2015 at 09:13:58AM -0400, Ronald S. Bultje wrote: > > Hi, > > > > On Mon, Aug 17, 2015 at 8:44 AM, Michael Niedermayer > > wrote: > > > > > On Mon, Aug 17, 2015 at 08:01:56AM -0400, Ronald S. Bultje wrote: > >

Re: [FFmpeg-devel] [PATCH] options: mark av_get_{int, double, q} as deprecated.

2015-08-17 Thread Ronald S. Bultje
Hi, On Mon, Aug 17, 2015 at 9:20 AM, Michael Niedermayer wrote: > On Mon, Aug 17, 2015 at 07:48:07AM -0400, Ronald S. Bultje wrote: > > Hi, > > > > On Mon, Aug 17, 2015 at 6:40 AM, Michael Niedermayer > > > wrote: > > > > > On Sun, Aug 16, 2015 at 05:45:55PM -0400, Ronald S. Bultje wrote: > > >

Re: [FFmpeg-devel] [PATCH] lavc/ffmpeg: put FF_API_DEBUG_MV around remaining uses of FF_DEBUG_VIS_QP/MB_TYPE.

2015-08-17 Thread Michael Niedermayer
On Mon, Aug 17, 2015 at 09:13:58AM -0400, Ronald S. Bultje wrote: > Hi, > > On Mon, Aug 17, 2015 at 8:44 AM, Michael Niedermayer > wrote: > > > On Mon, Aug 17, 2015 at 08:01:56AM -0400, Ronald S. Bultje wrote: > > > --- > > > ffmpeg.c | 6 +- > > > libavcodec/mpegvideo.c

Re: [FFmpeg-devel] [PATCH] options: mark av_get_{int, double, q} as deprecated.

2015-08-17 Thread Michael Niedermayer
On Mon, Aug 17, 2015 at 07:48:07AM -0400, Ronald S. Bultje wrote: > Hi, > > On Mon, Aug 17, 2015 at 6:40 AM, Michael Niedermayer > wrote: > > > On Sun, Aug 16, 2015 at 05:45:55PM -0400, Ronald S. Bultje wrote: > > > Hi, > > > > > > On Sun, Aug 16, 2015 at 5:24 PM, Andreas Cadhalpun < > > > andre

Re: [FFmpeg-devel] [PATCH 1/2] lavc: put remaining bits of vdpau-in-decoder under FF_API_CAP_VDPAU.

2015-08-17 Thread Ronald S. Bultje
On Mon, Aug 17, 2015 at 9:14 AM, Ronald S. Bultje wrote: > Hi, > > On Mon, Aug 17, 2015 at 8:55 AM, Michael Niedermayer < > mich...@niedermayer.cc> wrote: > >> On Mon, Aug 17, 2015 at 08:19:31AM -0400, Ronald S. Bultje wrote: >> > Hi, >> > >> > On Mon, Aug 17, 2015 at 8:16 AM, Michael Niedermayer

Re: [FFmpeg-devel] [PATCH 1/2] lavc: put remaining bits of vdpau-in-decoder under FF_API_CAP_VDPAU.

2015-08-17 Thread Ronald S. Bultje
Hi, On Mon, Aug 17, 2015 at 8:55 AM, Michael Niedermayer wrote: > On Mon, Aug 17, 2015 at 08:19:31AM -0400, Ronald S. Bultje wrote: > > Hi, > > > > On Mon, Aug 17, 2015 at 8:16 AM, Michael Niedermayer > > > wrote: > > > > > On Mon, Aug 17, 2015 at 07:10:44AM -0400, Ronald S. Bultje wrote: > > >

Re: [FFmpeg-devel] [PATCH] lavc/ffmpeg: put FF_API_DEBUG_MV around remaining uses of FF_DEBUG_VIS_QP/MB_TYPE.

2015-08-17 Thread Ronald S. Bultje
Hi, On Mon, Aug 17, 2015 at 8:44 AM, Michael Niedermayer wrote: > On Mon, Aug 17, 2015 at 08:01:56AM -0400, Ronald S. Bultje wrote: > > --- > > ffmpeg.c | 6 +- > > libavcodec/mpegvideo.c | 4 > > libavcodec/options_table.h | 2 ++ > > libavcodec/pthread_frame.c |

Re: [FFmpeg-devel] [PATCH 1/2] lavc: put remaining bits of vdpau-in-decoder under FF_API_CAP_VDPAU.

2015-08-17 Thread Michael Niedermayer
On Mon, Aug 17, 2015 at 08:19:31AM -0400, Ronald S. Bultje wrote: > Hi, > > On Mon, Aug 17, 2015 at 8:16 AM, Michael Niedermayer > wrote: > > > On Mon, Aug 17, 2015 at 07:10:44AM -0400, Ronald S. Bultje wrote: > > > --- > > > libavcodec/error_resilience.c | 2 ++ > > > libavcodec/h263dec.c

Re: [FFmpeg-devel] [PATCH] lavc/ffmpeg: put FF_API_DEBUG_MV around remaining uses of FF_DEBUG_VIS_QP/MB_TYPE.

2015-08-17 Thread Michael Niedermayer
On Mon, Aug 17, 2015 at 08:01:56AM -0400, Ronald S. Bultje wrote: > --- > ffmpeg.c | 6 +- > libavcodec/mpegvideo.c | 4 > libavcodec/options_table.h | 2 ++ > libavcodec/pthread_frame.c | 2 ++ > 4 files changed, 13 insertions(+), 1 deletion(-) please also remove m

Re: [FFmpeg-devel] [PATCH 1/2] lavc: put remaining bits of vdpau-in-decoder under FF_API_CAP_VDPAU.

2015-08-17 Thread Ronald S. Bultje
Hi, On Mon, Aug 17, 2015 at 8:16 AM, Michael Niedermayer wrote: > On Mon, Aug 17, 2015 at 07:10:44AM -0400, Ronald S. Bultje wrote: > > --- > > libavcodec/error_resilience.c | 2 ++ > > libavcodec/h263dec.c | 2 ++ > > libavcodec/h264.c | 4 > > libavcodec/h264_pict

Re: [FFmpeg-devel] [PATCH 1/2] lavc: put remaining bits of vdpau-in-decoder under FF_API_CAP_VDPAU.

2015-08-17 Thread Michael Niedermayer
On Mon, Aug 17, 2015 at 07:10:44AM -0400, Ronald S. Bultje wrote: > --- > libavcodec/error_resilience.c | 2 ++ > libavcodec/h263dec.c | 2 ++ > libavcodec/h264.c | 4 > libavcodec/h264_picture.c | 4 > libavcodec/h264_slice.c | 16 > l

[FFmpeg-devel] [PATCH] lavc/ffmpeg: put FF_API_DEBUG_MV around remaining uses of FF_DEBUG_VIS_QP/MB_TYPE.

2015-08-17 Thread Ronald S. Bultje
--- ffmpeg.c | 6 +- libavcodec/mpegvideo.c | 4 libavcodec/options_table.h | 2 ++ libavcodec/pthread_frame.c | 2 ++ 4 files changed, 13 insertions(+), 1 deletion(-) diff --git a/ffmpeg.c b/ffmpeg.c index 434abd4..268ef57 100644 --- a/ffmpeg.c +++ b/ffmpeg.c @@ -3

Re: [FFmpeg-devel] NVENC dosenot support Tesla M2090

2015-08-17 Thread Steven Liu
2015-08-17 19:53 GMT+08:00 Timo Rothenpieler : > > Device 0: "Tesla M2090" > >CUDA Driver Version / Runtime Version 7.0 / 7.0 > >CUDA Capability Major/Minor version number:2.0 > > > [nvenc @ 0x2591c20] 1 CUDA capable devices found > > [nvenc @ 0x2591c20] [ GPU #0 - < Tesla M20

Re: [FFmpeg-devel] [libav-devel] [PATCH 5/6] Postpone API-incompatible changes until the next bump

2015-08-17 Thread Ronald S. Bultje
Hi, On Mon, Aug 17, 2015 at 12:06 AM, Michael Niedermayer < mich...@niedermayer.cc> wrote: > On Sun, Aug 16, 2015 at 10:12:23PM +0200, Andreas Cadhalpun wrote: > > Hi, > > > > On 16.08.2015 19:27, Ronald S. Bultje wrote: > > > On Sat, Aug 8, 2015 at 7:37 AM, Andreas Cadhalpun < > > > andreas.cadh

  1   2   >