[libav-devel] [PATCH] Use deinterleavers for demangling audio packets in RealMedia.

2011-08-27 Thread Kostya Shishkov
Unlike other containers RealMedia stores its audio packets in scrambled form, with interleaver ID preceeding audio codec ID. Currently deinterleaving decision is tied to the codec while it's possible to have non-default deinterleaver with audio codec (like Int0 deinterleaver instead of specific one

[libav-devel] [PATCH 03/16] mpeg2enc: add 'non_linear_quant' private option

2011-08-27 Thread Anton Khirnov
Deprecate CODEC_FLAG2_NON_LINEAR_QUANT --- libavcodec/avcodec.h |2 ++ libavcodec/mpeg12enc.c | 15 --- libavcodec/mpegvideo_enc.c |4 +++- libavcodec/options.c |2 +- 4 files changed, 18 insertions(+), 5 deletions(-) diff --git a/libavcodec/avcodec.h b/l

[libav-devel] [PATCH 01/16] mpeg12enc: add intra_vlc private option.

2011-08-27 Thread Anton Khirnov
Deprecate CODEC_FLAG2_INTRA_VLC. --- libavcodec/arm/asm-offsets.h | 12 ++-- libavcodec/avcodec.h |2 ++ libavcodec/mpeg12enc.c | 23 +++ libavcodec/mpegvideo.h |1 + libavcodec/mpegvideo_enc.c |2 ++ libavcodec/options.c |

[libav-devel] [PATCH 02/16] mpeg12enc: add drop_frame_timecode private option.

2011-08-27 Thread Anton Khirnov
Deprecate CODEC_FLAG2_DROP_FRAME_TIMECODE --- libavcodec/avcodec.h |2 ++ libavcodec/mpeg12enc.c | 12 +--- libavcodec/mpegvideo.h |1 + libavcodec/options.c |2 ++ 4 files changed, 14 insertions(+), 3 deletions(-) diff --git a/libavcodec/avcodec.h b/libavcodec/avcodec.h

[libav-devel] [PATCH 05/16] libx264: add 'psy' private option.

2011-08-27 Thread Anton Khirnov
Deprecate CODEC_FLAG2_PSY --- libavcodec/avcodec.h |2 +- libavcodec/libx264.c |7 +-- libavcodec/options.c |2 +- 3 files changed, 7 insertions(+), 4 deletions(-) diff --git a/libavcodec/avcodec.h b/libavcodec/avcodec.h index a09ea72..1006b15 100644 --- a/libavcodec/avcodec.h +++

[libav-devel] [PATCH 04/16] libmp3lame: add 'reservoir' private option.

2011-08-27 Thread Anton Khirnov
Deprecate CODEC_FLAG2_BIT_RESERVOIR --- libavcodec/avcodec.h|2 ++ libavcodec/libmp3lame.c | 23 ++- libavcodec/options.c|2 ++ libavcodec/version.h|3 +++ 4 files changed, 29 insertions(+), 1 deletions(-) diff --git a/libavcodec/avcodec.h b/libavcode

[libav-devel] [PATCH 07/16] snow: add 'memc_only' private option.

2011-08-27 Thread Anton Khirnov
Deprecate CODEC_FLAG2_MEMC_ONLY --- libavcodec/avcodec.h |2 ++ libavcodec/snow.c| 22 -- libavcodec/version.h |3 +++ 3 files changed, 25 insertions(+), 2 deletions(-) diff --git a/libavcodec/avcodec.h b/libavcodec/avcodec.h index fe5050c..b0567d5 100644 --- a/l

[libav-devel] [PATCH 10/16] mpeg12enc/mpeg4videoenc: add 'alternate_scan' private option.

2011-08-27 Thread Anton Khirnov
Deprecate CODEC_FLAG_ALT_SCAN --- libavcodec/avcodec.h |2 ++ libavcodec/mpeg12enc.c |1 + libavcodec/mpeg4videoenc.c |1 + libavcodec/mpegvideo_enc.c |2 +- libavcodec/options.c |2 ++ 5 files changed, 7 insertions(+), 1 deletions(-) diff --git a/libavcodec/av

[libav-devel] [PATCH 06/16] libx264: add 'mbtree' private option.

2011-08-27 Thread Anton Khirnov
Deprecate CODEC_FLAG2_MBTREE --- libavcodec/avcodec.h |2 +- libavcodec/libx264.c |6 +- libavcodec/options.c |2 ++ 3 files changed, 8 insertions(+), 2 deletions(-) diff --git a/libavcodec/avcodec.h b/libavcodec/avcodec.h index 1006b15..fe5050c 100644 --- a/libavcodec/avcodec.h +

[libav-devel] [PATCH 08/16] mpeg4enc: add 'data_partitioning' private option.

2011-08-27 Thread Anton Khirnov
Deprecate CODEC_FLAG_PART --- libavcodec/avcodec.h |2 ++ libavcodec/mpeg4videoenc.c | 17 + libavcodec/mpegvideo_enc.c |7 ++- libavcodec/options.c |2 ++ 4 files changed, 27 insertions(+), 1 deletions(-) diff --git a/libavcodec/avcodec.h b/libavcode

[libav-devel] [PATCH 09/16] mjpegdec: add 'extern_huff' private option.

2011-08-27 Thread Anton Khirnov
Deprecate CODEC_FLAG_EXTERN_HUFF --- libavcodec/avcodec.h |2 ++ libavcodec/mjpegdec.c | 20 libavcodec/mjpegdec.h |5 + libavcodec/options.c |2 ++ libavcodec/version.h |3 +++ 5 files changed, 32 insertions(+), 0 deletions(-) diff --git a/libavcodec

[libav-devel] [PATCH 11/16] h263p encoder: add 'umv' private option.

2011-08-27 Thread Anton Khirnov
Deprecate CODEC_FLAG_H263P_UMV --- libavcodec/avcodec.h |2 ++ libavcodec/mpegvideo_enc.c | 20 +++- libavcodec/options.c |2 ++ 3 files changed, 23 insertions(+), 1 deletions(-) diff --git a/libavcodec/avcodec.h b/libavcodec/avcodec.h index 811e079..b2e8d78

[libav-devel] [PATCH 12/16] h263p encoder: add 'aiv' private option.

2011-08-27 Thread Anton Khirnov
Deprecate CODEC_FLAG_H263P_AIV --- libavcodec/avcodec.h |2 ++ libavcodec/mpegvideo_enc.c |4 +++- libavcodec/options.c |2 ++ 3 files changed, 7 insertions(+), 1 deletions(-) diff --git a/libavcodec/avcodec.h b/libavcodec/avcodec.h index b2e8d78..c4a01f4 100644 --- a/liba

[libav-devel] [PATCH 15/16] mpeg12: add 'scan_offset' private option.

2011-08-27 Thread Anton Khirnov
Deprecate CODEC_FLAG_SVCD_SCAN_OFFSET --- libavcodec/avcodec.h |2 ++ libavcodec/mpeg12enc.c |7 +-- libavcodec/mpegvideo.h |1 + libavcodec/options.c |2 ++ 4 files changed, 10 insertions(+), 2 deletions(-) diff --git a/libavcodec/avcodec.h b/libavcodec/avcodec.h index 57

[libav-devel] [PATCH 16/16] lavc: cosmetics, group deprecated codec flags

2011-08-27 Thread Anton Khirnov
--- libavcodec/avcodec.h | 68 + 1 files changed, 29 insertions(+), 39 deletions(-) diff --git a/libavcodec/avcodec.h b/libavcodec/avcodec.h index f9a4557..29f841f 100644 --- a/libavcodec/avcodec.h +++ b/libavcodec/avcodec.h @@ -570,9 +570,6 @@ ty

[libav-devel] [PATCH 13/16] h263/p encoder: add 'obmc' private option.

2011-08-27 Thread Anton Khirnov
Deprecate CODEC_FLAG_OBMC --- libavcodec/avcodec.h |2 +- libavcodec/mpegvideo_enc.c | 28 +--- libavcodec/options.c |2 ++ 3 files changed, 24 insertions(+), 8 deletions(-) diff --git a/libavcodec/avcodec.h b/libavcodec/avcodec.h index c4a01f4..87d19

[libav-devel] [PATCH 14/16] h263/p encoder: add 'slice_struct' private option.

2011-08-27 Thread Anton Khirnov
Deprecate CODEC_FLAG_H263P_SLICE_STRUCT --- libavcodec/avcodec.h |2 ++ libavcodec/mpegvideo_enc.c |5 - libavcodec/options.c |2 +- 3 files changed, 7 insertions(+), 2 deletions(-) diff --git a/libavcodec/avcodec.h b/libavcodec/avcodec.h index 87d1988..575f645 100644

Re: [libav-devel] [PATCH] Use deinterleavers for demangling audio packets in RealMedia.

2011-08-27 Thread Anton Khirnov
On Sat, 27 Aug 2011 12:15:28 +0200, Kostya Shishkov wrote: > Unlike other containers RealMedia stores its audio packets in scrambled form, > with interleaver ID preceeding audio codec ID. Currently deinterleaving > decision is tied to the codec while it's possible to have non-default > deinterle

[libav-devel] [PATCH 1/5] AVOptions: add AV_OPT_SEARCH_FAKE_OBJ flag for av_opt_find().

2011-08-27 Thread Anton Khirnov
It allows to search for options only with AVClass, without allocating the corresponding context. --- doc/APIchanges|3 +++ libavcodec/options.c |2 +- libavformat/options.c |2 +- libavutil/avutil.h|2 +- libavutil/opt.h |9 + 5 files changed, 15 inse

[libav-devel] [PATCH 3/5] cmdutils: get rid of dummy contexts for examining AVOptions.

2011-08-27 Thread Anton Khirnov
Replace it with newly introduced libavutil API. --- avconv.c | 10 +++--- avplay.c | 10 +++--- avprobe.c |7 ++- cmdutils.c | 27 +-- ffmpeg.c | 10 +++--- 5 files changed, 32 insertions(+), 32 deletions(-) diff --git a/avconv.c b/avconv

[libav-devel] [PATCH 2/5] lavf, lavc, sws: add {avcodec, avformat, sws}_get_class() functions.

2011-08-27 Thread Anton Khirnov
--- doc/APIchanges |5 + libavcodec/avcodec.h |8 libavcodec/options.c |5 + libavcodec/version.h |2 +- libavformat/avformat.h |8 libavformat/options.c |5 + libavformat/version.h |2 +- libswscale/options.c |5 +

[libav-devel] [PATCH 5/5] AVOptions: drop av_ prefix from static av_get_number().

2011-08-27 Thread Anton Khirnov
--- libavutil/opt.c |8 1 files changed, 4 insertions(+), 4 deletions(-) diff --git a/libavutil/opt.c b/libavutil/opt.c index 9c601a2..707977a 100644 --- a/libavutil/opt.c +++ b/libavutil/opt.c @@ -261,7 +261,7 @@ const char *av_get_string(void *obj, const char *name, const AVOption

[libav-devel] [PATCH 4/5] AVOptions: fix av_set_string3() doxy to match reality.

2011-08-27 Thread Anton Khirnov
Fixes bug 28. --- libavutil/opt.h |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/libavutil/opt.h b/libavutil/opt.h index 21dac7c..68d2c79 100644 --- a/libavutil/opt.h +++ b/libavutil/opt.h @@ -134,7 +134,7 @@ const AVOption *av_find_opt(void *obj, const char *name, cons

[libav-devel] [PATCH] doxygen: drop another pointless star from pointer variable name

2011-08-27 Thread Diego Biurrun
--- libavutil/fifo.h |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/libavutil/fifo.h b/libavutil/fifo.h index 961463a..f106239 100644 --- a/libavutil/fifo.h +++ b/libavutil/fifo.h @@ -111,7 +111,7 @@ void av_fifo_drain(AVFifoBuffer *f, int size); * Return a pointer to

Re: [libav-devel] [libav-commits] fifo: add av_fifo_peek2(), and deprecate av_fifo_peek()

2011-08-27 Thread Diego Biurrun
On Fri, Aug 26, 2011 at 08:54:52PM +0200, Stefano Sabatini wrote: > > --- a/libavutil/fifo.h > +++ b/libavutil/fifo.h > @@ -106,11 +107,35 @@ int av_fifo_realloc2(AVFifoBuffer *f, unsigned int > size); > > +/** > + * Return a pointer to the data stored in a FIFO buffer at a certain offset. > +

Re: [libav-devel] [PATCH 5/5] AVOptions: drop av_ prefix from static av_get_number().

2011-08-27 Thread Diego Biurrun
On Sat, Aug 27, 2011 at 01:49:16PM +0200, Anton Khirnov wrote: > --- > libavutil/opt.c |8 > 1 files changed, 4 insertions(+), 4 deletions(-) OK Diego ___ libav-devel mailing list libav-devel@libav.org https://lists.libav.org/mailman/listi

Re: [libav-devel] [PATCH] doxygen: drop another pointless star from pointer variable name

2011-08-27 Thread Anton Khirnov
On Sat, 27 Aug 2011 14:01:40 +0200, Diego Biurrun wrote: > --- > libavutil/fifo.h |2 +- > 1 files changed, 1 insertions(+), 1 deletions(-) > Sure seems fine. Is dropping stars your new hobby? ;) -- Anton Khirnov ___ libav-devel mailing list l

[libav-devel] [PATCH] avconv: re-add nb_streams to InputFile.

2011-08-27 Thread Anton Khirnov
It was mistakenly removed in 2cf8355f98681bdd726b739008acd5483f82f8d7, not taking into account that new streams might appear in av_read_frame() that avconv doesn't know about. Fixes bug 24. --- avconv.c | 13 - 1 files changed, 8 insertions(+), 5 deletions(-) diff --git a/avconv.c

Re: [libav-devel] [PATCH] Use deinterleavers for demangling audio packets in RealMedia.

2011-08-27 Thread Kostya
On Sat, Aug 27, 2011 at 01:39:03PM +0200, Anton Khirnov wrote: > > On Sat, 27 Aug 2011 12:15:28 +0200, Kostya Shishkov > wrote: > > Unlike other containers RealMedia stores its audio packets in scrambled > > form, > > with interleaver ID preceeding audio codec ID. Currently deinterleaving > > d

Re: [libav-devel] [PATCH] doxygen: drop another pointless star from pointer variable name

2011-08-27 Thread Diego Biurrun
On Sat, Aug 27, 2011 at 02:24:41PM +0200, Anton Khirnov wrote: > > On Sat, 27 Aug 2011 14:01:40 +0200, Diego Biurrun wrote: > > --- > > libavutil/fifo.h |2 +- > > 1 files changed, 1 insertions(+), 1 deletions(-) > > Sure seems fine. > > Is dropping stars your new hobby? ;) Somebody sneak

[libav-devel] [PATCH] VC1: Support dynamic dimension changes

2011-08-27 Thread Alberto Delmás
>From fc6247f8e7c4fcad3ed154d18f0c8369acd7e359 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Alberto=20Delm=C3=A1s?= Date: Sat, 27 Aug 2011 19:37:26 +0200 Subject: [PATCH] VC1: Support dynamic dimension changes Fixes SA00072, SA00073, SA10150, SA10151, Issue2076 Improves SA10153 --- libavcodec/vc1

Re: [libav-devel] [PATCH] Use deinterleavers for demangling audio packets in RealMedia.

2011-08-27 Thread Anton Khirnov
On Sat, 27 Aug 2011 14:57:33 +0200, Kostya wrote: Non-text part: multipart/mixed > On Sat, Aug 27, 2011 at 01:39:03PM +0200, Anton Khirnov wrote: > > > > On Sat, 27 Aug 2011 12:15:28 +0200, Kostya Shishkov > > wrote: > > > Unlike other containers RealMedia stores its audio packets in scrambled

Re: [libav-devel] [PATCH] VC1: Support dynamic dimension changes

2011-08-27 Thread Alberto Delmás
Removed some commented out code leftovers. >From 02248ab21e73bf9b70cfcd023a50617f9700d3f6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Alberto=20Delm=C3=A1s?= Date: Sat, 27 Aug 2011 19:37:26 +0200 Subject: [PATCH] VC1: Support dynamic dimension changes Fixes SA00072, SA00073, SA10150, SA10151, Issue

Re: [libav-devel] [PATCH] VC1: Support dynamic dimension changes

2011-08-27 Thread Kostya
On Sat, Aug 27, 2011 at 08:46:32PM +0200, Alberto Delmás wrote: > Removed some commented out code leftovers. [...] It doesn't look bad, fine with me. ___ libav-devel mailing list libav-devel@libav.org https://lists.libav.org/mailman/listinfo/libav-devel

Re: [libav-devel] [PATCH 04/16] libmp3lame: add 'reservoir' private option.

2011-08-27 Thread Alex Converse
On Sat, Aug 27, 2011 at 4:35 AM, Anton Khirnov wrote: > Deprecate CODEC_FLAG2_BIT_RESERVOIR > --- >  libavcodec/avcodec.h    |    2 ++ >  libavcodec/libmp3lame.c |   23 ++- >  libavcodec/options.c    |    2 ++ >  libavcodec/version.h    |    3 +++ >  4 files changed, 29 inserti

Re: [libav-devel] PATCH: LATM muxer

2011-08-27 Thread Kieran Kunhya
I think this covers all the comments. 0001-Add-LATM-muxing-support.patch Description: Binary data ___ libav-devel mailing list libav-devel@libav.org https://lists.libav.org/mailman/listinfo/libav-devel