Re: [libav-devel] [PATCH 030/115] dvdsubdec: Convert to the new bitstream reader

2016-06-09 Thread Luca Barbato
On 09/06/16 17:12, Diego Biurrun wrote: > From: Alexandra Hájková > > --- > libavcodec/dvdsubdec.c | 34 +- > 1 file changed, 17 insertions(+), 17 deletions(-) 2-30 seem fine. ___ libav-devel

Re: [libav-devel] [PATCH 002/115] Add a new bitstream reader to replace get_bits

2016-06-09 Thread Luca Barbato
On 09/06/16 17:11, Diego Biurrun wrote: > From: Alexandra Hájková > > The new bit reader features a simpler API and an implementation without > stacks of nested macros. Performance is the same or better, especially > for mezzanine formats and 64-bit platforms. > --- >

Re: [libav-devel] [PATCH 001/115] attributes: Add av_unlikely macro

2016-06-09 Thread Luca Barbato
On 09/06/16 17:11, Diego Biurrun wrote: > From: Alexandra Hájková > > --- > doc/APIchanges | 3 +++ > libavutil/attributes.h | 6 ++ > libavutil/version.h| 2 +- > 3 files changed, 10 insertions(+), 1 deletion(-) > Still OK.

[libav-devel] [PATCH] vaapi_encode: Add driver-specific behaviour for i965 param buffers

2016-06-09 Thread Mark Thompson
Adds a general mechanism for setting driver quirks, and detects the driver name to set them. When the i965 driver is being used, destroy all parameter buffers explicitly after use despite passing them to vaRenderPicture(). --- An alternative approach to solving the same problem as the previous

[libav-devel] [PATCH 4/5] mov: Support prores with multiple stsd

2016-06-09 Thread Vittorio Giovara
This function needs to return false, or data in the additional tables will be skipped, and the decoder will not be able to decode frames associated with them. --- libavformat/mov.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/libavformat/mov.c b/libavformat/mov.c index 9e2d0e2..9a7a0bc

[libav-devel] [PATCH 5/5] mov: Validate stsc indexes are within stsd bounds

2016-06-09 Thread Vittorio Giovara
--- Already approved. Vittorio libavformat/mov.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/libavformat/mov.c b/libavformat/mov.c index 9a7a0bc..f09c614 100644 --- a/libavformat/mov.c +++ b/libavformat/mov.c @@ -1954,6 +1954,8 @@ static int mov_read_stsc(MOVContext *c, AVIOContext

[libav-devel] [PATCH 3/5] mov: Implement support for multiple sample description tables

2016-06-09 Thread Vittorio Giovara
Store data from each stsd in a separate extradata buffer, keep track of the stsc index for read and seek operations, switch buffers when the index differs. Decoder is notified with an AV_PKT_DATA_NEW_EXTRADATA packet side data. Since H264 supports this notification, and can be reset midstream,

[libav-devel] [PATCH 2/5] h264: Support AV_PKT_DATA_NEW_EXTRADATA

2016-06-09 Thread Vittorio Giovara
--- Applied Anton's change. Vittorio libavcodec/h264.c | 13 + 1 file changed, 13 insertions(+) diff --git a/libavcodec/h264.c b/libavcodec/h264.c index 224ba2f..2dba261 100644 --- a/libavcodec/h264.c +++ b/libavcodec/h264.c @@ -1004,6 +1004,8 @@ static int

[libav-devel] [PATCH 1/5] lavc: Document AV_PKT_DATA_NEW_EXTRADATA

2016-06-09 Thread Vittorio Giovara
--- Already approved. libavcodec/avcodec.h | 8 1 file changed, 8 insertions(+) diff --git a/libavcodec/avcodec.h b/libavcodec/avcodec.h index f33b7e5..01a6286 100644 --- a/libavcodec/avcodec.h +++ b/libavcodec/avcodec.h @@ -1187,6 +1187,14 @@ typedef struct AVCPBProperties { */ enum

[libav-devel] [PATCH] avpacket: Error out when creating 0-sized side data

2016-06-09 Thread Vittorio Giovara
This mimics the behaviour of other av_*_new_side_data(). This is not caught by the malloc check, since AV_INPUT_BUFFER_PADDING_SIZE is always added to the allocated size. Signed-off-by: Vittorio Giovara --- This is assuming that packet side data cannot be used empty.

Re: [libav-devel] [PATCH] avpacket: Error out when creating 0-sized side data

2016-06-09 Thread Vittorio Giovara
On Thu, Jun 9, 2016 at 6:31 PM, Vittorio Giovara wrote: > This mimics the behaviour of other av_*_new_side_data(). > This is not caught by the malloc check, since AV_INPUT_BUFFER_PADDING_SIZE > is always added to the allocated size. > > Signed-off-by: Vittorio Giovara

Re: [libav-devel] [PATCH] avpacket: Error out when creating 0-sized side data

2016-06-09 Thread Hendrik Leppkes
On Fri, Jun 10, 2016 at 12:31 AM, Vittorio Giovara wrote: > This mimics the behaviour of other av_*_new_side_data(). > This is not caught by the malloc check, since AV_INPUT_BUFFER_PADDING_SIZE > is always added to the allocated size. > > Signed-off-by: Vittorio

[libav-devel] [PATCH] avpacket: Error out when creating 0-sized side data

2016-06-09 Thread Vittorio Giovara
This mimics the behaviour of other av_*_new_side_data(). This is not caught by the malloc check, since AV_INPUT_BUFFER_PADDING_SIZE is always added to the allocated size. Signed-off-by: Vittorio Giovara --- This is assuming that packet side data cannot be used empty.

[libav-devel] [PATCH] vaapi_encode: Free parameter buffers despite calling vaRenderPicture

2016-06-09 Thread Mark Thompson
The i965 driver does not free these buffers as required by VAAPI, so we have to do this ourselves if we want to support encoding sessions which run indefinitely. Since this changes our behaviour to be inconsistent with the specification, also add an extra test on startup to detect non-i965

Re: [libav-devel] [PATCH 10/28] h264: factor out setting frame properties / side data

2016-06-09 Thread Vittorio Giovara
On Thu, Jun 9, 2016 at 4:29 AM, Anton Khirnov wrote: > Right now this code is mixed with selecting the next output frame. Move > it to a separate function called from h264_field_start(), which is a > more appropriate place for this. > --- ok -- Vittorio

Re: [libav-devel] [PATCH 2/3] h264: Support AV_PKT_DATA_NEW_EXTRADATA

2016-06-09 Thread Vittorio Giovara
On Thu, Jun 9, 2016 at 4:46 PM, Anton Khirnov wrote: > Quoting Vittorio Giovara (2016-06-09 22:42:30) >> On Thu, Jun 9, 2016 at 4:36 PM, Anton Khirnov wrote: >> > Quoting Vittorio Giovara (2016-06-02 02:00:03) >> >> --- >> >> I left the context extradata

Re: [libav-devel] [PATCH 2/3] h264: Support AV_PKT_DATA_NEW_EXTRADATA

2016-06-09 Thread Anton Khirnov
Quoting Vittorio Giovara (2016-06-09 22:42:30) > On Thu, Jun 9, 2016 at 4:36 PM, Anton Khirnov wrote: > > Quoting Vittorio Giovara (2016-06-02 02:00:03) > >> --- > >> I left the context extradata unchanged, and I process the new extradata > >> directly. This fixed the crash at

Re: [libav-devel] [PATCH 2/3] h264: Support AV_PKT_DATA_NEW_EXTRADATA

2016-06-09 Thread Vittorio Giovara
On Thu, Jun 9, 2016 at 4:36 PM, Anton Khirnov wrote: > Quoting Vittorio Giovara (2016-06-02 02:00:03) >> --- >> I left the context extradata unchanged, and I process the new extradata >> directly. This fixed the crash at decoder_close. >> Vittorio >> >> libavcodec/h264.c | 15

Re: [libav-devel] [PATCH 2/3] h264: Support AV_PKT_DATA_NEW_EXTRADATA

2016-06-09 Thread Anton Khirnov
Quoting Vittorio Giovara (2016-06-02 02:00:03) > --- > I left the context extradata unchanged, and I process the new extradata > directly. This fixed the crash at decoder_close. > Vittorio > > libavcodec/h264.c | 15 +++ > 1 file changed, 15 insertions(+) > > diff --git

Re: [libav-devel] [PATCH 3/3] mov: Implement support for multiple sample description tables

2016-06-09 Thread Martin Storsjö
On Mon, 6 Jun 2016, Vittorio Giovara wrote: On Mon, Jun 6, 2016 at 2:57 PM, Martin Storsjö wrote: On Wed, 1 Jun 2016, Vittorio Giovara wrote: Store data from each stsd in a separate extradata buffer, keep track of the stsc index for read and seek operations, switch buffers

Re: [libav-devel] [PATCH] Remove Benjamin Larsson from consulting

2016-06-09 Thread Luca Barbato
On 09/06/16 21:25, Benjamin Larsson wrote: > --- > src/consulting | 8 > 1 file changed, 8 deletions(-) > > diff --git a/src/consulting b/src/consulting > index 4ac26a0..60cd85a 100644 > --- a/src/consulting > +++ b/src/consulting > @@ -44,14 +44,6 @@ E.g.: > " > --> > > -Benjamin

[libav-devel] [PATCH] Remove Benjamin Larsson from consulting

2016-06-09 Thread Benjamin Larsson
--- src/consulting | 8 1 file changed, 8 deletions(-) diff --git a/src/consulting b/src/consulting index 4ac26a0..60cd85a 100644 --- a/src/consulting +++ b/src/consulting @@ -44,14 +44,6 @@ E.g.: " --> -Benjamin Larsson - -Benjamin Larsson is located in Stockholm, Sweden and is

Re: [libav-devel] [PATCH 077/115] dv: Convert to the new bitreader

2016-06-09 Thread Vittorio Giovara
On Thu, Jun 9, 2016 at 11:12 AM, Diego Biurrun wrote: > From: Luca Barbato > > --- > libavcodec/dvdec.c | 122 > ++--- > 1 file changed, 69 insertions(+), 53 deletions(-) > > diff --git a/libavcodec/dvdec.c

Re: [libav-devel] new bitstream reader final version

2016-06-09 Thread Diego Biurrun
Ugh, I mangled some of the previous text, here are the missing patch number markers: On Thu, Jun 09, 2016 at 05:11:42PM +0200, Diego Biurrun wrote: [PATCH 110/115] jpeg: Convert to the new bitstream reader > Since these share code, they need to be converted at the same time. [PATCH 112/115]

Re: [libav-devel] [PATCH 02/28] h264: move the block starting a new field out of slice_header_parse()

2016-06-09 Thread Vittorio Giovara
On Thu, Jun 9, 2016 at 4:29 AM, Anton Khirnov wrote: > There is no bitstream parsing in that block and messing with > decoder-global state is not something that belongs into header parsing. > > Nothing else in this function depends on the value of current_slice, > except for

Re: [libav-devel] [PATCH 01/28] h264: pass a H2645NAL to slice header decoding

2016-06-09 Thread Vittorio Giovara
On Thu, Jun 9, 2016 at 4:29 AM, Anton Khirnov wrote: > Replace the decoder-global nal_unit_type/nal_ref_idc variables with the > per-NAL ones. The decoder-global ones still cannot be removed because > they are used by hwaccels. > --- > libavcodec/h264.c | 2 +- >

Re: [libav-devel] [PATCH 15/28] h264: tighten the valid range for ref_frame_count

2016-06-09 Thread Vittorio Giovara
On Thu, Jun 9, 2016 at 4:54 AM, Diego Biurrun wrote: > On Thu, Jun 09, 2016 at 10:30:01AM +0200, Anton Khirnov wrote: >> This field (which the spec calls max_num_ref_frames) must be less or >> equal to MaxDpbFrames, which is at most 16. > > less than > > Diego lgtm with that

Re: [libav-devel] [PATCH 13/28] svq3: stop using H264Picture

2016-06-09 Thread Vittorio Giovara
On Thu, Jun 9, 2016 at 4:29 AM, Anton Khirnov wrote: > The SVQ3 decoder has been decoupled from the H.264 decoder, so it can > now use its own data type. > --- > libavcodec/svq3.c | 34 -- > 1 file changed, 24 insertions(+), 10 deletions(-)

[libav-devel] [PATCH 086/115] dvbsubdec: Convert to the new bitstream reader

2016-06-09 Thread Diego Biurrun
From: Alexandra Hájková --- libavcodec/dvbsubdec.c | 68 +- 1 file changed, 34 insertions(+), 34 deletions(-) diff --git a/libavcodec/dvbsubdec.c b/libavcodec/dvbsubdec.c index 526f125..0c5624d 100644 ---

[libav-devel] [PATCH 061/115] twinvq: Convert to the new bitstream reader

2016-06-09 Thread Diego Biurrun
From: Alexandra Hájková --- libavcodec/twinvq_data.h | 2 +- libavcodec/twinvqdec.c | 42 +- 2 files changed, 22 insertions(+), 22 deletions(-) diff --git a/libavcodec/twinvq_data.h b/libavcodec/twinvq_data.h index

[libav-devel] [PATCH 078/115] aac: Convert to the new bitstream reader

2016-06-09 Thread Diego Biurrun
From: Alexandra Hájková --- libavcodec/aac_adtstoasc_bsf.c | 20 +- libavcodec/aac_parser.c| 7 +- libavcodec/aacadtsdec.c| 34 +-- libavcodec/aacadtsdec.h| 7 +- libavcodec/aacdec.c| 548 -

[libav-devel] [PATCH 094/115] dca: Convert to the new bitstream reader

2016-06-09 Thread Diego Biurrun
From: Alexandra Hájková --- libavcodec/dca.h| 6 +- libavcodec/dca_exss.c | 166 ++-- libavcodec/dca_parser.c | 16 ++-- libavcodec/dca_xll.c| 160 +-- libavcodec/dcadec.c | 219

[libav-devel] [PATCH 096/115] mpc: Convert to the new bitstream reader

2016-06-09 Thread Diego Biurrun
From: Alexandra Hájková --- libavcodec/mpc7.c | 73 +-- libavcodec/mpc8.c | 83 +++--- libavformat/mpc8.c | 26 - 3 files changed, 94 insertions(+), 88

Re: [libav-devel] new bitstream reader final version

2016-06-09 Thread Luca Barbato
On 09/06/16 17:11, Diego Biurrun wrote: > Since these share code, they need to be converted at the same time. > > > Since these share code, they need to be converted at the same time. > > > Removes the legacy API headers now that all components have been converted. Some comments stayed

[libav-devel] [PATCH 115/115] Use bitstream_init8() where appropriate

2016-06-09 Thread Diego Biurrun
--- libavcodec/4xm.c | 6 +++--- libavcodec/aacdec.c| 4 ++-- libavcodec/ac3dec.c| 2 +- libavcodec/adxdec.c| 2 +- libavcodec/asvdec.c| 2 +- libavcodec/atrac1.c| 2 +- libavcodec/atrac3.c

[libav-devel] [PATCH 114/115] cosmetics: Drop some now unnecessary block braces

2016-06-09 Thread Diego Biurrun
--- libavcodec/eamad.c | 82 + libavcodec/mdec.c | 74 libavcodec/mjpegdec.c | 56 +++--- libavcodec/mpeg12.c| 78 + libavcodec/mpeg12dec.c | 417 ++--- libavcodec/mpeg4videodec.c | 202

[libav-devel] [PATCH 113/115] Remove legacy get_bits headers

2016-06-09 Thread Diego Biurrun
--- libavcodec/get_bits.h | 531 libavcodec/golomb_legacy.h | 589 - libavcodec/unary_legacy.h | 56 - 3 files changed, 1176 deletions(-) delete mode 100644 libavcodec/get_bits.h delete mode 100644

[libav-devel] [PATCH 099/115] golomb: Convert to the new bitstream reader

2016-06-09 Thread Diego Biurrun
From: Alexandra Hájková --- libavcodec/aic.c | 2 +- libavcodec/cavs.c| 2 +- libavcodec/cavsdec.c | 2 +- libavcodec/dirac.c | 2 +- libavcodec/ffv1dec.c

[libav-devel] [PATCH 101/115] cavs: Convert to the new bitstream reader

2016-06-09 Thread Diego Biurrun
From: Alexandra Hájková --- libavcodec/cavs.c| 8 +-- libavcodec/cavs.h| 4 +- libavcodec/cavsdec.c | 178 +-- 3 files changed, 95 insertions(+), 95 deletions(-) diff --git a/libavcodec/cavs.c

[libav-devel] [PATCH 104/115] fic: Convert to the new bitstream reader

2016-06-09 Thread Diego Biurrun
From: Alexandra Hájková --- libavcodec/fic.c | 18 +- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/libavcodec/fic.c b/libavcodec/fic.c index 1804104..a038af6 100644 --- a/libavcodec/fic.c +++ b/libavcodec/fic.c @@ -24,9 +24,9 @@ #include

[libav-devel] [PATCH 110/115] jpeg: Convert to the new bitstream reader

2016-06-09 Thread Diego Biurrun
From: Alexandra Hájková --- libavcodec/jpeglsdec.c | 48 - libavcodec/jpeglsenc.c | 14 +-- libavcodec/mjpegbdec.c | 44 + libavcodec/mjpegdec.c | 264 + libavcodec/mjpegdec.h | 5 +-

[libav-devel] [PATCH 100/115] aic: Convert to the new bitstream reader

2016-06-09 Thread Diego Biurrun
From: Alexandra Hájková --- libavcodec/aic.c | 30 +++--- 1 file changed, 15 insertions(+), 15 deletions(-) diff --git a/libavcodec/aic.c b/libavcodec/aic.c index 405ebf1..368b3bc 100644 --- a/libavcodec/aic.c +++ b/libavcodec/aic.c @@ -23,13

[libav-devel] [PATCH 108/115] shorten: Convert to the new bitstream reader

2016-06-09 Thread Diego Biurrun
From: Alexandra Hájková --- libavcodec/shorten.c | 49 + 1 file changed, 25 insertions(+), 24 deletions(-) diff --git a/libavcodec/shorten.c b/libavcodec/shorten.c index 07d87ea..60e3daf 100644 --- a/libavcodec/shorten.c

[libav-devel] [PATCH 103/115] ffv1: Convert to the new bitstream reader

2016-06-09 Thread Diego Biurrun
From: Alexandra Hájková --- libavcodec/ffv1.h| 4 ++-- libavcodec/ffv1dec.c | 24 2 files changed, 14 insertions(+), 14 deletions(-) diff --git a/libavcodec/ffv1.h b/libavcodec/ffv1.h index 34370fa..7e0465a 100644 --- a/libavcodec/ffv1.h +++

[libav-devel] [PATCH 106/115] loco: Convert to the new bitstream reader

2016-06-09 Thread Diego Biurrun
From: Alexandra Hájková --- libavcodec/loco.c | 14 +++--- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/libavcodec/loco.c b/libavcodec/loco.c index 8624ea8..fa4c5ed 100644 --- a/libavcodec/loco.c +++ b/libavcodec/loco.c @@ -25,8 +25,8 @@ */

[libav-devel] [PATCH 097/115] tak: Convert to the new bitstream reader

2016-06-09 Thread Diego Biurrun
From: Alexandra Hájková --- libavcodec/tak.c| 49 +++ libavcodec/tak.h| 10 +-- libavcodec/tak_parser.c | 15 ++--- libavcodec/takdec.c | 158 libavformat/takdec.c| 13 ++-- 5 files

[libav-devel] [PATCH 102/115] dirac: Convert to the new bitstream reader

2016-06-09 Thread Diego Biurrun
From: Alexandra Hájková --- libavcodec/dirac.c | 89 +++--- 1 file changed, 45 insertions(+), 44 deletions(-) diff --git a/libavcodec/dirac.c b/libavcodec/dirac.c index cce9439..5faf0a3 100644 --- a/libavcodec/dirac.c +++

[libav-devel] [PATCH 111/115] svq3: Convert to the new bitstream reader

2016-06-09 Thread Diego Biurrun
From: Alexandra Hájková --- libavcodec/svq3.c | 133 +++--- 1 file changed, 67 insertions(+), 66 deletions(-) diff --git a/libavcodec/svq3.c b/libavcodec/svq3.c index dce8afb..c8ac4b3 100644 --- a/libavcodec/svq3.c +++

[libav-devel] [PATCH 098/115] wavpack: Convert to the new bitstream reader

2016-06-09 Thread Diego Biurrun
From: Alexandra Hájková --- libavcodec/wavpack.c | 92 ++-- 1 file changed, 46 insertions(+), 46 deletions(-) diff --git a/libavcodec/wavpack.c b/libavcodec/wavpack.c index b8adb3d..66430b9 100644 --- a/libavcodec/wavpack.c

[libav-devel] [PATCH 105/115] flac: Convert to the new bitstream reader

2016-06-09 Thread Diego Biurrun
From: Alexandra Hájková --- libavcodec/flac.c| 68 libavcodec/flac.h| 6 ++--- libavcodec/flac_parser.c | 6 ++--- libavcodec/flacdec.c | 58 -

[libav-devel] [PATCH 107/115] ralf: Convert to the new bitstream reader

2016-06-09 Thread Diego Biurrun
From: Alexandra Hájková --- libavcodec/ralf.c | 68 --- 1 file changed, 35 insertions(+), 33 deletions(-) diff --git a/libavcodec/ralf.c b/libavcodec/ralf.c index 6bc0f3f..1003b10 100644 --- a/libavcodec/ralf.c +++

[libav-devel] [PATCH 063/115] vaapi_mpeg2: Convert to the new bitstream reader

2016-06-09 Thread Diego Biurrun
From: Alexandra Hájková --- libavcodec/vaapi_mpeg2.c | 19 ++- 1 file changed, 10 insertions(+), 9 deletions(-) diff --git a/libavcodec/vaapi_mpeg2.c b/libavcodec/vaapi_mpeg2.c index cb77745..12bf9cd 100644 --- a/libavcodec/vaapi_mpeg2.c +++

[libav-devel] [PATCH 065/115] vima: Convert to the new bitstream reader

2016-06-09 Thread Diego Biurrun
From: Alexandra Hájková --- libavcodec/vima.c | 24 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/libavcodec/vima.c b/libavcodec/vima.c index 6f539a8..0db1897 100644 --- a/libavcodec/vima.c +++ b/libavcodec/vima.c @@ -29,7 +29,7

[libav-devel] [PATCH 091/115] alac: Convert to the new bitstream reader

2016-06-09 Thread Diego Biurrun
From: Alexandra Hájková --- libavcodec/alac.c | 65 --- 1 file changed, 33 insertions(+), 32 deletions(-) diff --git a/libavcodec/alac.c b/libavcodec/alac.c index 236f177..b947348 100644 --- a/libavcodec/alac.c +++

[libav-devel] [PATCH 079/115] imc: Convert to the new bitstream reader

2016-06-09 Thread Diego Biurrun
From: Alexandra Hájková --- libavcodec/imc.c | 45 +++-- 1 file changed, 23 insertions(+), 22 deletions(-) diff --git a/libavcodec/imc.c b/libavcodec/imc.c index 9a6912d..01ab012 100644 --- a/libavcodec/imc.c +++ b/libavcodec/imc.c

[libav-devel] [PATCH 095/115] dxtory: Convert to the new bitstream reader

2016-06-09 Thread Diego Biurrun
From: Alexandra Hájková --- libavcodec/dxtory.c | 88 ++--- 1 file changed, 44 insertions(+), 44 deletions(-) diff --git a/libavcodec/dxtory.c b/libavcodec/dxtory.c index 27b2e2f..f55cd79 100644 --- a/libavcodec/dxtory.c

[libav-devel] [PATCH 090/115] unary: Convert to the new bitstream reader

2016-06-09 Thread Diego Biurrun
From: Alexandra Hájková --- libavcodec/aic.c | 2 +- libavcodec/alac.c | 2 +- libavcodec/alsdec.c| 3 ++- libavcodec/apedec.c| 2 +- libavcodec/dca_xll.c | 2 +-

[libav-devel] [PATCH 067/115] wma: Convert to the new bitstream reader

2016-06-09 Thread Diego Biurrun
From: Alexandra Hájková --- libavcodec/wma.c| 41 +++ libavcodec/wma.h| 8 +- libavcodec/wmadec.c | 64 +-- libavcodec/wmalosslessdec.c | 188 +++ libavcodec/wmaprodec.c | 207

[libav-devel] [PATCH 084/115] mlp: Convert to the new bitstream reader

2016-06-09 Thread Diego Biurrun
From: Alexandra Hájková --- libavcodec/mlp_parser.c | 63 +++ libavcodec/mlp_parser.h | 4 +- libavcodec/mlpdec.c | 201 3 files changed, 136 insertions(+), 132 deletions(-) diff --git

[libav-devel] [PATCH 068/115] wnv1: Convert to the new bitstream reader

2016-06-09 Thread Diego Biurrun
From: Alexandra Hájková --- libavcodec/wnv1.c | 10 +- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/libavcodec/wnv1.c b/libavcodec/wnv1.c index d0304c9..80d66ae 100644 --- a/libavcodec/wnv1.c +++ b/libavcodec/wnv1.c @@ -25,7 +25,7 @@ */

[libav-devel] [PATCH 062/115] utvideodec: Convert to the new bitstream reader

2016-06-09 Thread Diego Biurrun
From: Alexandra Hájková --- libavcodec/utvideodec.c | 15 --- 1 file changed, 8 insertions(+), 7 deletions(-) diff --git a/libavcodec/utvideodec.c b/libavcodec/utvideodec.c index 30ca4d2..f4ae507 100644 --- a/libavcodec/utvideodec.c +++

[libav-devel] [PATCH 093/115] apedec: Convert to the new bitstream reader

2016-06-09 Thread Diego Biurrun
From: Alexandra Hájková --- libavcodec/apedec.c | 47 --- 1 file changed, 24 insertions(+), 23 deletions(-) diff --git a/libavcodec/apedec.c b/libavcodec/apedec.c index 69ded9a..da45e85 100644 --- a/libavcodec/apedec.c +++

[libav-devel] [PATCH 085/115] motionpixels: Convert to the new bitstream reader

2016-06-09 Thread Diego Biurrun
From: Alexandra Hájková --- libavcodec/motionpixels.c | 77 --- 1 file changed, 40 insertions(+), 37 deletions(-) diff --git a/libavcodec/motionpixels.c b/libavcodec/motionpixels.c index a18541b..333f18f 100644 ---

[libav-devel] [PATCH 076/115] mp3: Convert to the new bitstream reader

2016-06-09 Thread Diego Biurrun
From: Alexandra Hájková --- libavcodec/mpegaudiodec_template.c | 203 +++-- 1 file changed, 102 insertions(+), 101 deletions(-) diff --git a/libavcodec/mpegaudiodec_template.c b/libavcodec/mpegaudiodec_template.c index 9bfba6f..631e582

[libav-devel] [PATCH 071/115] mov: Convert to the new bitstream reader

2016-06-09 Thread Diego Biurrun
From: Alexandra Hájková --- libavformat/mov.c| 10 ++ libavformat/movenc.c | 41 + 2 files changed, 27 insertions(+), 24 deletions(-) diff --git a/libavformat/mov.c b/libavformat/mov.c index 125919f..1a88cd2 100644 ---

[libav-devel] [PATCH 064/115] vble: Convert to the new bitstream reader

2016-06-09 Thread Diego Biurrun
From: Alexandra Hájková --- libavcodec/vble.c | 26 +- 1 file changed, 13 insertions(+), 13 deletions(-) diff --git a/libavcodec/vble.c b/libavcodec/vble.c index 1a78036..fef1090 100644 --- a/libavcodec/vble.c +++ b/libavcodec/vble.c @@ -28,7

[libav-devel] [PATCH 088/115] interplayvideo: Convert to the new bitstream reader

2016-06-09 Thread Diego Biurrun
From: Alexandra Hájková --- libavcodec/interplayvideo.c | 8 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/libavcodec/interplayvideo.c b/libavcodec/interplayvideo.c index e0d1e91..fab9f27 100644 --- a/libavcodec/interplayvideo.c +++

[libav-devel] [PATCH 092/115] als: Convert to the new bitstream reader

2016-06-09 Thread Diego Biurrun
From: Alexandra Hájková --- libavcodec/alsdec.c | 232 ++-- libavcodec/bgmc.c | 16 ++-- libavcodec/bgmc.h | 8 +- 3 files changed, 130 insertions(+), 126 deletions(-) diff --git a/libavcodec/alsdec.c

[libav-devel] [PATCH 070/115] xsubdec: Convert to the new bitstream reader

2016-06-09 Thread Diego Biurrun
From: Alexandra Hájková --- libavcodec/xsubdec.c | 15 --- 1 file changed, 8 insertions(+), 7 deletions(-) diff --git a/libavcodec/xsubdec.c b/libavcodec/xsubdec.c index 3af300c..a07f94c 100644 --- a/libavcodec/xsubdec.c +++ b/libavcodec/xsubdec.c @@ -21,8

[libav-devel] [PATCH 066/115] vorbis: Convert to the new bitstream reader

2016-06-09 Thread Diego Biurrun
From: Alexandra Hájková --- libavcodec/vorbis_parser.c | 32 +++--- libavcodec/vorbisdec.c | 237 +++-- 2 files changed, 135 insertions(+), 134 deletions(-) diff --git a/libavcodec/vorbis_parser.c b/libavcodec/vorbis_parser.c

[libav-devel] [PATCH 081/115] lagarith: Convert to the new bitstream reader

2016-06-09 Thread Diego Biurrun
From: Alexandra Hájková --- libavcodec/lagarith.c| 22 +++--- libavcodec/lagarithrac.c | 12 ++-- libavcodec/lagarithrac.h | 6 -- 3 files changed, 21 insertions(+), 19 deletions(-) diff --git a/libavcodec/lagarith.c

[libav-devel] [PATCH 087/115] adx: Convert to the new bitstream reader

2016-06-09 Thread Diego Biurrun
From: Alexandra Hájková --- libavcodec/adxdec.c | 9 + 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/libavcodec/adxdec.c b/libavcodec/adxdec.c index dc587b2..a3344ae 100644 --- a/libavcodec/adxdec.c +++ b/libavcodec/adxdec.c @@ -20,9 +20,10 @@ */

[libav-devel] [PATCH 082/115] metasound: Convert to the new bitstream reader

2016-06-09 Thread Diego Biurrun
From: Alexandra Hájková --- libavcodec/metasound.c | 44 ++-- 1 file changed, 22 insertions(+), 22 deletions(-) diff --git a/libavcodec/metasound.c b/libavcodec/metasound.c index a3b210e..ac6d9cd 100644 --- a/libavcodec/metasound.c

[libav-devel] [PATCH 089/115] huffyuv: Convert to the new bitstream reader

2016-06-09 Thread Diego Biurrun
From: Alexandra Hájková --- libavcodec/huffyuv.h| 4 +- libavcodec/huffyuvdec.c | 104 2 files changed, 54 insertions(+), 54 deletions(-) diff --git a/libavcodec/huffyuv.h b/libavcodec/huffyuv.h index

[libav-devel] [PATCH 083/115] mimic: Convert to the new bitstream reader

2016-06-09 Thread Diego Biurrun
From: Alexandra Hájková --- libavcodec/mimic.c | 24 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/libavcodec/mimic.c b/libavcodec/mimic.c index 6f43723..48f85e1 100644 --- a/libavcodec/mimic.c +++ b/libavcodec/mimic.c @@ -24,9

[libav-devel] [PATCH 080/115] indeo: Convert to the new bitstream reader

2016-06-09 Thread Diego Biurrun
From: Alexandra Hájková --- libavcodec/indeo2.c | 16 +++--- libavcodec/indeo3.c | 19 --- libavcodec/indeo4.c | 158 +++- libavcodec/indeo5.c | 127 + libavcodec/ivi.c| 71

[libav-devel] [PATCH 077/115] dv: Convert to the new bitreader

2016-06-09 Thread Diego Biurrun
From: Luca Barbato --- libavcodec/dvdec.c | 122 ++--- 1 file changed, 69 insertions(+), 53 deletions(-) diff --git a/libavcodec/dvdec.c b/libavcodec/dvdec.c index 463d108..3ccd672 100644 --- a/libavcodec/dvdec.c +++

[libav-devel] [PATCH 072/115] mpegts: Convert to the new bitstream reader

2016-06-09 Thread Diego Biurrun
From: Alexandra Hájková --- libavformat/mpegts.c | 48 +--- 1 file changed, 25 insertions(+), 23 deletions(-) diff --git a/libavformat/mpegts.c b/libavformat/mpegts.c index 40672ae..6e12fca 100644 --- a/libavformat/mpegts.c +++

[libav-devel] [PATCH 056/115] truemotion2: Convert to the new bitstream reader

2016-06-09 Thread Diego Biurrun
From: Alexandra Hájková --- libavcodec/truemotion2.c | 40 1 file changed, 20 insertions(+), 20 deletions(-) diff --git a/libavcodec/truemotion2.c b/libavcodec/truemotion2.c index 1726440..99884be 100644 ---

[libav-devel] [PATCH 060/115] tta: Convert to the new bitstream reader

2016-06-09 Thread Diego Biurrun
From: Alexandra Hájková --- libavcodec/tta.c | 50 +- 1 file changed, 25 insertions(+), 25 deletions(-) diff --git a/libavcodec/tta.c b/libavcodec/tta.c index 2b57406..2f96933 100644 --- a/libavcodec/tta.c +++

[libav-devel] [PATCH 073/115] ogg: Convert to the new bitstream reader

2016-06-09 Thread Diego Biurrun
From: Alexandra Hájková --- libavformat/oggparseflac.c | 22 -- libavformat/oggparsetheora.c | 39 +-- 2 files changed, 33 insertions(+), 28 deletions(-) diff --git a/libavformat/oggparseflac.c

[libav-devel] [PATCH 069/115] xan: Convert to the new bitstream reader

2016-06-09 Thread Diego Biurrun
From: Alexandra Hájková --- libavcodec/xan.c | 8 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/libavcodec/xan.c b/libavcodec/xan.c index c16c651..33149e5 100644 --- a/libavcodec/xan.c +++ b/libavcodec/xan.c @@ -37,8 +37,8 @@ #define

[libav-devel] [PATCH 075/115] rtp: Convert to the new bitstream reader

2016-06-09 Thread Diego Biurrun
From: Alexandra Hájková --- libavformat/rtpdec_h261.c | 19 ++- libavformat/rtpdec_h263_rfc2190.c | 19 ++- libavformat/rtpdec_latm.c | 24 +--- libavformat/rtpdec_mpeg4.c| 16 +---

[libav-devel] [PATCH 055/115] svq1dec: Convert to the new bitstream reader

2016-06-09 Thread Diego Biurrun
From: Alexandra Hájková --- libavcodec/svq1dec.c | 120 +-- 1 file changed, 60 insertions(+), 60 deletions(-) diff --git a/libavcodec/svq1dec.c b/libavcodec/svq1dec.c index d6f4b43..f33a852 100644 --- a/libavcodec/svq1dec.c

[libav-devel] [PATCH 042/115] hqx: Convert to the new bitstream header

2016-06-09 Thread Diego Biurrun
From: Alexandra Hájková --- libavcodec/hqx.c | 64 libavcodec/hqx.h | 5 +++-- 2 files changed, 35 insertions(+), 34 deletions(-) diff --git a/libavcodec/hqx.c b/libavcodec/hqx.c index 7411d3f..3c359e3 100644 ---

[libav-devel] [PATCH 052/115] rtjpeg: Convert to the new bitstream reader

2016-06-09 Thread Diego Biurrun
From: Alexandra Hájková --- libavcodec/rtjpeg.c | 42 +++--- 1 file changed, 23 insertions(+), 19 deletions(-) diff --git a/libavcodec/rtjpeg.c b/libavcodec/rtjpeg.c index 67eeff8..baa1f78 100644 --- a/libavcodec/rtjpeg.c +++

[libav-devel] [PATCH 059/115] tscc2: Convert to the new bitstream reader

2016-06-09 Thread Diego Biurrun
From: Alexandra Hájková --- libavcodec/tscc2.c | 30 +++--- 1 file changed, 15 insertions(+), 15 deletions(-) diff --git a/libavcodec/tscc2.c b/libavcodec/tscc2.c index d3d45e4..d86428a 100644 --- a/libavcodec/tscc2.c +++ b/libavcodec/tscc2.c @@

[libav-devel] [PATCH 050/115] ra144: Convert to the new bitstream reader

2016-06-09 Thread Diego Biurrun
From: Alexandra Hájková --- libavcodec/ra144dec.c | 23 --- 1 file changed, 12 insertions(+), 11 deletions(-) diff --git a/libavcodec/ra144dec.c b/libavcodec/ra144dec.c index 2895357..35ee697 100644 --- a/libavcodec/ra144dec.c +++

[libav-devel] [PATCH 054/115] smacker: Convert to the new bitstream reader

2016-06-09 Thread Diego Biurrun
From: Alexandra Hájková --- libavcodec/smacker.c | 143 +++ 1 file changed, 75 insertions(+), 68 deletions(-) diff --git a/libavcodec/smacker.c b/libavcodec/smacker.c index e3e5475..027728e 100644 --- a/libavcodec/smacker.c

[libav-devel] [PATCH 057/115] tiertex: Convert to the new bitstream reader

2016-06-09 Thread Diego Biurrun
From: Alexandra Hájková --- libavcodec/tiertexseqv.c | 26 ++ 1 file changed, 14 insertions(+), 12 deletions(-) diff --git a/libavcodec/tiertexseqv.c b/libavcodec/tiertexseqv.c index 8ca7edf..d952266 100644 --- a/libavcodec/tiertexseqv.c +++

[libav-devel] [PATCH 038/115] g2meet: Convert to the new bitstream reader

2016-06-09 Thread Diego Biurrun
From: Alexandra Hájková --- libavcodec/g2meet.c | 30 +++--- 1 file changed, 15 insertions(+), 15 deletions(-) diff --git a/libavcodec/g2meet.c b/libavcodec/g2meet.c index a89610d..8c36b1a 100644 --- a/libavcodec/g2meet.c +++ b/libavcodec/g2meet.c

[libav-devel] [PATCH 044/115] nellymoser: Convert to the new bitstream reader

2016-06-09 Thread Diego Biurrun
From: Alexandra Hájková --- libavcodec/nellymoserdec.c | 16 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/libavcodec/nellymoserdec.c b/libavcodec/nellymoserdec.c index 355935f..390872c 100644 --- a/libavcodec/nellymoserdec.c +++

[libav-devel] [PATCH 049/115] qsvenc_hevc: Convert to the new bitstream reader

2016-06-09 Thread Diego Biurrun
From: Alexandra Hájková --- libavcodec/qsvenc_hevc.c | 14 +++--- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/libavcodec/qsvenc_hevc.c b/libavcodec/qsvenc_hevc.c index 706191d..2aec124 100644 --- a/libavcodec/qsvenc_hevc.c +++

[libav-devel] [PATCH 045/115] opus: Convert to the new bitstream reader

2016-06-09 Thread Diego Biurrun
From: Alexandra Hájková --- libavcodec/opus.h| 6 +++--- libavcodec/opusdec.c | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/libavcodec/opus.h b/libavcodec/opus.h index 55c91fa..fbf67c9 100644 --- a/libavcodec/opus.h +++ b/libavcodec/opus.h

[libav-devel] [PATCH 034/115] exr: Convert to the new bitstream reader

2016-06-09 Thread Diego Biurrun
From: Alexandra Hájková --- libavcodec/exr.c | 12 ++-- 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/libavcodec/exr.c b/libavcodec/exr.c index d10841d..28cee84 100644 --- a/libavcodec/exr.c +++ b/libavcodec/exr.c @@ -39,8 +39,8 @@ #include

[libav-devel] [PATCH 058/115] truespeech: Convert to the new bitstream reader

2016-06-09 Thread Diego Biurrun
From: Alexandra Hájková --- libavcodec/truespeech.c | 88 + 1 file changed, 45 insertions(+), 43 deletions(-) diff --git a/libavcodec/truespeech.c b/libavcodec/truespeech.c index b2195ba..48e2126 100644 ---

[libav-devel] [PATCH 032/115] escape124: Convert to the new bitstream reader

2016-06-09 Thread Diego Biurrun
From: Alexandra Hájková --- libavcodec/escape124.c | 83 +- 1 file changed, 42 insertions(+), 41 deletions(-) diff --git a/libavcodec/escape124.c b/libavcodec/escape124.c index 6d1b487..c9edca4 100644 ---

[libav-devel] [PATCH 053/115] sipr: Convert to the new bitstream reader

2016-06-09 Thread Diego Biurrun
From: Alexandra Hájková --- libavcodec/sipr.c | 24 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/libavcodec/sipr.c b/libavcodec/sipr.c index 686b3e2..cf29d3b 100644 --- a/libavcodec/sipr.c +++ b/libavcodec/sipr.c @@ -31,7 +31,7

[libav-devel] [PATCH 048/115] qdm2: Convert to the new bitstream reader

2016-06-09 Thread Diego Biurrun
From: Alexandra Hájková --- libavcodec/qdm2.c | 200 +++--- 1 file changed, 100 insertions(+), 100 deletions(-) diff --git a/libavcodec/qdm2.c b/libavcodec/qdm2.c index ec57b35..95575a6 100644 --- a/libavcodec/qdm2.c +++

[libav-devel] [PATCH 033/115] escape130: Convert to the new bitstream reader

2016-06-09 Thread Diego Biurrun
From: Alexandra Hájková --- libavcodec/escape130.c | 46 +++--- 1 file changed, 23 insertions(+), 23 deletions(-) diff --git a/libavcodec/escape130.c b/libavcodec/escape130.c index bfc1f3f..544f36d 100644 ---

  1   2   3   >