Re: [FFmpeg-devel] [PATCH v1 00/11] Replace magic number by micro for bprint init

2018-06-10 Thread myp...@gmail.com
On Mon, Jun 11, 2018 at 8:48 AM myp...@gmail.com wrote: > > On Sun, Jun 10, 2018 at 5:28 PM Nicolas George wrote: > > > > Jun Zhao (2018-06-10): > > > v1: - Replace magic number by micro for bprint init > > > > I will not oppose the patch series, but I think it is useless clutter of > > the

Re: [FFmpeg-devel] [PATCH v1 00/11] Replace magic number by micro for bprint init

2018-06-10 Thread myp...@gmail.com
On Sun, Jun 10, 2018 at 5:28 PM Nicolas George wrote: > > Jun Zhao (2018-06-10): > > v1: - Replace magic number by micro for bprint init > > I will not oppose the patch series, but I think it is useless clutter of > the history. The special values are not magic, they are logical or > standard.

Re: [FFmpeg-devel] qt-faststart bug near 4GB

2018-06-10 Thread Michael Niedermayer
On Sun, Jun 10, 2018 at 01:20:10PM +, Eran Kornblau wrote: > > > > -Original Message- > > From: ffmpeg-devel [mailto:ffmpeg-devel-boun...@ffmpeg.org] On Behalf Of > > Michael Niedermayer > > Sent: Saturday, June 9, 2018 9:17 PM > > To: FFmpeg development discussions and patches > >

Re: [FFmpeg-devel] [PATCH 3/4 v2] avcodec/vc1: rewrite vc1_decode_i_blocks to align with VC-1 spec

2018-06-10 Thread Michael Niedermayer
On Sun, Jun 10, 2018 at 10:18:45AM +0200, Jerome Borsboom wrote: > Thank you for the rigorous testing of my patches. I try to be careful > when changing things, but every now and then I unwittingly may break > things that do not surface in setup. > > There is something strange with the

[FFmpeg-devel] [PATCH]ffplay: Don't crash if stream_cycle_channel() is called before initialization

2018-06-10 Thread Carl Eugen Hoyos
Hi! Attached patch fixes a crash if SDL sends a keydown event before stream and window initialization is finished, ticket #7252. Please comment, Carl Eugen From 43324194a81f1f33150fefac6336285ab95eb14f Mon Sep 17 00:00:00 2001 From: Carl Eugen Hoyos Date: Mon, 11 Jun 2018 01:44:24 +0200

[FFmpeg-devel] [PATCH] avcodec/libzvbi-teletextdec: propagate ERASE_PAGE flag for repeated subtitle page headers

2018-06-10 Thread Marton Balint
This works around a libzvbi bug (a corner case in the teletext spec): https://sourceforge.net/p/zapping/bugs/203/ https://sourceforge.net/p/zapping/patches/20/ Fixes samples/ffmpeg-bugs/trac/ticket2086/RBT_20100801_1835.ts. Signed-off-by: Marton Balint --- libavcodec/libzvbi-teletextdec.c |

Re: [FFmpeg-devel] [PATCH 1/2] avcodec/libzvbi-teletextdec: add support for selecting subtitle pages only

2018-06-10 Thread Marton Balint
On Mon, 7 May 2018, Aman Gupta wrote: On Sun, May 6, 2018 at 2:05 PM, Marton Balint wrote: Signed-off-by: Marton Balint --- doc/decoders.texi| 5 +++-- libavcodec/libzvbi-teletextdec.c | 31 ++- 2 files changed, 25 insertions(+), 11

[FFmpeg-devel] [PATCH] libavfilter/boxblur_opencl filter.

2018-06-10 Thread Danil Iashchenko
lavfi:add boxbur_opencl. Behaves like existing boxblur filter. --- Sorry, my bad. It should work now. Thanks! configure | 1 + libavfilter/Makefile| 6 +- libavfilter/allfilters.c| 1 + libavfilter/boxblur.c | 105 +

Re: [FFmpeg-devel] [RFC] libfdk_aac license

2018-06-10 Thread Jean-Baptiste Kempf
Hello, On Sat, 9 Jun 2018, at 22:19, Jan Ekström wrote: > I think the general idea was that since LGPL lets you link an LGPL > library in a proprietary piece of software (given that you follow the > spirit and language of LGPL by letting people build the same version > and making it possible for

Re: [FFmpeg-devel] [PATCH] fftools/ffmpeg_opt: Add -toeof option to stop writing relative to EOF

2018-06-10 Thread Jan Ekström
On Sun, Jun 10, 2018 at 10:39 PM, Morten With wrote: > As Gyan clarified, this only affects one input file. Help text has been > modified as per Gyan's instructions (not yet submitted). > > This feature was specifically requested here (and I had the same issue as > the one who opened the ticket):

Re: [FFmpeg-devel] [RFC][PATCH][Type 2] Revert "doc/developer.texi: Add a code of conduct"

2018-06-10 Thread Josh de Kock
On 2018/05/14 17:50, Derek Buitenhuis wrote: It was never enforced, and there is no documented way to enforce it, rendering it useless. [...] I think this is the best thing to do first. We could always re-add a more 'proper' CoC later, but for now there's no point creating more confusion. I

Re: [FFmpeg-devel] [PATCH] fftools/ffmpeg_opt: Add -toeof option to stop writing relative to EOF

2018-06-10 Thread Morten With
As Gyan clarified, this only affects one input file. Help text has been modified as per Gyan's instructions (not yet submitted). This feature was specifically requested here (and I had the same issue as the one who opened the ticket): https://trac.ffmpeg.org/ticket/7155 I think it's a lot

Re: [FFmpeg-devel] [PATCH] fftools/ffmpeg_opt: Add -toeof option to stop writing relative to EOF

2018-06-10 Thread Gyan Doshi
On 10-06-2018 10:01 PM, morten.w...@gmail.com wrote: +if (o->stop_time_eof != AV_NOPTS_VALUE) { +if (ic->duration>0) { +o->recording_time = ic->duration + o->stop_time_eof; +} else +av_log(NULL, AV_LOG_WARNING, "Cannot use -toeof, duration of %s

Re: [FFmpeg-devel] [PATCH] fftools/ffmpeg_opt: Add -toeof option to stop writing relative to EOF

2018-06-10 Thread Gyan Doshi
On 10-06-2018 11:28 PM, Marton Balint wrote: end of file is misleading, you are simply using the input duration as far as I see. So write that in the help text. Also what happens if the output is generated from multiple inputs? This is the counterpart to `to` as -sseof is to -ss. This is

Re: [FFmpeg-devel] [PATCH] fftools/ffmpeg_opt: Add -toeof option to stop writing relative to EOF

2018-06-10 Thread Gyan Doshi
On 10-06-2018 10:01 PM, morten.w...@gmail.com wrote: +@item -toeof @var{position} (@emph{input}) +Stop writing the output at @var{position} relative to the "end of file". That is negative +values are later in the file, 0 is at EOF. Should be, "Stop reading the input at @var{position}

Re: [FFmpeg-devel] [PATCH] fftools/ffmpeg_opt: Add -toeof option to stop writing relative to EOF

2018-06-10 Thread Marton Balint
On Sun, 10 Jun 2018, morten.w...@gmail.com wrote: From: withmorten Signed-off-by: Morten With --- doc/ffmpeg.texi | 4 fftools/ffmpeg.h | 1 + fftools/ffmpeg_opt.c | 9 + 3 files changed, 14 insertions(+) diff --git a/doc/ffmpeg.texi b/doc/ffmpeg.texi index

Re: [FFmpeg-devel] [PATCH 3/4] avcodec/h264_mc_template: Only prefetch motion if the list is used.

2018-06-10 Thread Michael Niedermayer
On Sat, Jun 09, 2018 at 12:11:29AM +0200, Michael Niedermayer wrote: > Fixes: index 59 out of bounds for type 'H264Ref [48]' > Fixes: > 8232/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_H264_fuzzer-5703295145345024 > > Found-by: continuous fuzzing process >

[FFmpeg-devel] [PATCH] fftools/ffmpeg_opt: Add -toeof option to stop writing relative to EOF

2018-06-10 Thread morten . with
From: withmorten Signed-off-by: Morten With --- doc/ffmpeg.texi | 4 fftools/ffmpeg.h | 1 + fftools/ffmpeg_opt.c | 9 + 3 files changed, 14 insertions(+) diff --git a/doc/ffmpeg.texi b/doc/ffmpeg.texi index 3717f22d42..fe635d0e42 100644 --- a/doc/ffmpeg.texi +++

[FFmpeg-devel] [PATCH] avformat: remove unused MP4A_LATM flag

2018-06-10 Thread Gyan Doshi
From 5d3ab077f46fe14eaf5aa1246f975d847cf85e29 Mon Sep 17 00:00:00 2001 From: Gyan Doshi Date: Sun, 10 Jun 2018 20:18:10 +0530 Subject: [PATCH] avformat: remove unused MP4A_LATM flag A generic lavf option for AAC LATM packetization for the RTP muxer was added in ef409645f0 and then made inert 20

Re: [FFmpeg-devel] [PATCH 4/4] avcodec/h264_slice: Fix overflow in recovery_frame computation

2018-06-10 Thread Michael Niedermayer
On Fri, Jun 08, 2018 at 11:34:02PM -0300, James Almer wrote: > On 6/8/2018 11:23 PM, James Almer wrote: > > On 6/8/2018 8:12 PM, James Almer wrote: > >> On 6/8/2018 7:11 PM, Michael Niedermayer wrote: > >>> Fixes: signed integer overflow: 15 + 2147483646 cannot be represented in > >>> type 'int'

Re: [FFmpeg-devel] [PATCH 2/4] avcodec/xwddec: Use ff_set_dimensions()

2018-06-10 Thread Michael Niedermayer
On Sat, Jun 09, 2018 at 08:35:32AM +0200, Paul B Mahol wrote: > On 6/9/18, Michael Niedermayer wrote: > > Fixes: OOM > > Fixes: > > 8178/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_XWD_fuzzer-4844793342459904 > > > > Found-by: continuous fuzzing process > >

Re: [FFmpeg-devel] [PATCH 1/4] avcodec/wavpack: Fix overflow in adding tail

2018-06-10 Thread Michael Niedermayer
On Sat, Jun 09, 2018 at 12:11:27AM +0200, Michael Niedermayer wrote: > Fixes: signed integer overflow: 2146907204 + 26846088 cannot be represented > in type 'int' > Fixes: > 8105/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_WAVPACK_fuzzer-6233036682166272 > > Found-by: continuous fuzzing

Re: [FFmpeg-devel] qt-faststart bug near 4GB

2018-06-10 Thread Eran Kornblau
> > -Original Message- > From: ffmpeg-devel [mailto:ffmpeg-devel-boun...@ffmpeg.org] On Behalf Of > Michael Niedermayer > Sent: Saturday, June 9, 2018 9:17 PM > To: FFmpeg development discussions and patches > Subject: Re: [FFmpeg-devel] qt-faststart bug near 4GB > > > + > > +

Re: [FFmpeg-devel] [PATCH] pixdesc: Only check against valid entries when iterating over lists of enums

2018-06-10 Thread Derek Buitenhuis
On 09/06/2018 18:31, Michael Niedermayer wrote: > theres no hole in color_range_names > this may lead to static analyzers complaining about dead code v2 sent. I will send a patch to modify the doxygen for the affected enums as well, since I think it's likely downstream users may try to iterate

Re: [FFmpeg-devel] [PATCH] pixdesc: Only check against valid entries when iterating over lists of enums

2018-06-10 Thread Derek Buitenhuis
On 10/06/2018 13:27, Derek Buitenhuis wrote: > I will send a patch to modify the doxygen for the affected enums as well, > since I think it's likely downstream users may try to iterate over them > in a similar fashion. Scratch that part, it already is documented, it seems. - Derek

[FFmpeg-devel] [PATCH v2] pixdesc: Only check against valid entries when iterating over lists of enums

2018-06-10 Thread Derek Buitenhuis
Some of these enums have gaps in between their values, since they correspond to the values in various specs, instead of being an incrementing list. Fixes segfaults when, for example, using the valid API call: av_color_primaries_from_name("jecdec-p22"); Signed-off-by: Derek Buitenhuis ---

[FFmpeg-devel] [PATCH 09/12] avformat/mxfdec: add support for clip wrapped essences

2018-06-10 Thread Marton Balint
Also use common code with opAtom. Fixes ticket #2776. Partially fixes ticket #5671. Fixes ticket #5866. Signed-off-by: Marton Balint --- libavformat/mxfdec.c | 281 --- 1 file changed, 130 insertions(+), 151 deletions(-) diff --git

[FFmpeg-devel] [PATCH 10/12] avformat/mxfdec: fix indentation and rename mxf_read_packet_old

2018-06-10 Thread Marton Balint
Signed-off-by: Marton Balint --- libavformat/mxfdec.c | 34 +- 1 file changed, 17 insertions(+), 17 deletions(-) diff --git a/libavformat/mxfdec.c b/libavformat/mxfdec.c index d6d1628edb..04ec302110 100644 --- a/libavformat/mxfdec.c +++ b/libavformat/mxfdec.c @@

[FFmpeg-devel] [PATCH 07/12] avformat/mxfdec: compute sample_count for all streams on seek

2018-06-10 Thread Marton Balint
sample_count will be used for per-stream current_edit_unit. Signed-off-by: Marton Balint --- libavformat/mxfdec.c | 39 +-- 1 file changed, 17 insertions(+), 22 deletions(-) diff --git a/libavformat/mxfdec.c b/libavformat/mxfdec.c index

[FFmpeg-devel] [PATCH 11/12] avformat/mxfdec: take into account index_edit_rate

2018-06-10 Thread Marton Balint
Fixes samples/ffmpeg-bugs/roundup/issue591/02785736.mxf Signed-off-by: Marton Balint --- libavformat/mxfdec.c | 19 ++- 1 file changed, 14 insertions(+), 5 deletions(-) diff --git a/libavformat/mxfdec.c b/libavformat/mxfdec.c index 04ec302110..8f9a3a752d 100644 ---

[FFmpeg-devel] [PATCH 12/12] avformat/mxfdec: add some essence container uls from SMPTE draft

2018-06-10 Thread Marton Balint
Signed-off-by: Marton Balint --- libavformat/mxfdec.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/libavformat/mxfdec.c b/libavformat/mxfdec.c index 8f9a3a752d..32ca9e0f99 100644 --- a/libavformat/mxfdec.c +++ b/libavformat/mxfdec.c @@ -1240,6 +1240,8 @@ static const MXFCodecUL

[FFmpeg-devel] [PATCH 06/12] avformat/mxfdec: make current_edit_unit a parameter of mxf_compute_samples

2018-06-10 Thread Marton Balint
No change in functionality. Signed-off-by: Marton Balint --- libavformat/mxfdec.c | 10 +- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/libavformat/mxfdec.c b/libavformat/mxfdec.c index be6884edbe..8e099164aa 100644 --- a/libavformat/mxfdec.c +++ b/libavformat/mxfdec.c

[FFmpeg-devel] [PATCH 05/12] avformat/mxfdec: make edit_units_per_packet a track property

2018-06-10 Thread Marton Balint
Signed-off-by: Marton Balint --- libavformat/mxfdec.c | 51 ++- 1 file changed, 26 insertions(+), 25 deletions(-) diff --git a/libavformat/mxfdec.c b/libavformat/mxfdec.c index 67b0028e88..be6884edbe 100644 --- a/libavformat/mxfdec.c +++

[FFmpeg-devel] [PATCH 08/12] avformat/mxfdec: add support for returning the partition for mxf_edit_unit_absolute_offset and mxf_absolute_bodysid_offset

2018-06-10 Thread Marton Balint
Signed-off-by: Marton Balint --- libavformat/mxfdec.c | 18 ++ 1 file changed, 10 insertions(+), 8 deletions(-) diff --git a/libavformat/mxfdec.c b/libavformat/mxfdec.c index 0f4cc9c3a3..8054e051cf 100644 --- a/libavformat/mxfdec.c +++ b/libavformat/mxfdec.c @@ -1399,7 +1399,7

[FFmpeg-devel] [PATCH 04/12] avformat/mxfdec: compute both essence_offset and essence_length in mxf_compute_essence_containers

2018-06-10 Thread Marton Balint
Also compute the correct essence_offset and essence_length for all clip wrapped essences. Signed-off-by: Marton Balint --- libavformat/mxfdec.c | 108 +++ 1 file changed, 57 insertions(+), 51 deletions(-) diff --git a/libavformat/mxfdec.c

[FFmpeg-devel] [PATCH 01/12] avformat/mxfdec: store next_klv in KLVPacket

2018-06-10 Thread Marton Balint
Signed-off-by: Marton Balint --- libavformat/mxf.h| 1 + libavformat/mxfdec.c | 13 - 2 files changed, 9 insertions(+), 5 deletions(-) diff --git a/libavformat/mxf.h b/libavformat/mxf.h index 19f8d8a9f5..93bc2cd075 100644 --- a/libavformat/mxf.h +++ b/libavformat/mxf.h @@ -62,6

[FFmpeg-devel] [PATCH 03/12] avformat/mxfdec: extend mxf_handle_missing_index_segment for all clip wrapped essences

2018-06-10 Thread Marton Balint
Also make sure we set a valid track index sid and a valid track edit rate in order for the index to be useful. Signed-off-by: Marton Balint --- libavformat/mxfdec.c | 39 +++ 1 file changed, 23 insertions(+), 16 deletions(-) diff --git a/libavformat/mxfdec.c

[FFmpeg-devel] [PATCH 02/12] avformat/mxfdec: add support for determining essence wrapping scheme

2018-06-10 Thread Marton Balint
Some code is based on bmxlib-libmxf/mxf/mxf_utils.c. Signed-off-by: Marton Balint --- libavformat/mxf.h| 9 ++ libavformat/mxfdec.c | 79 +++- 2 files changed, 68 insertions(+), 20 deletions(-) diff --git a/libavformat/mxf.h

[FFmpeg-devel] [PATCH v1 04/11] lavc/dvdsubenc: Replace magic number by micro for bprint init

2018-06-10 Thread Jun Zhao
Replace magic number by micro for bprint init. Signed-off-by: Jun Zhao --- libavcodec/dvdsubenc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavcodec/dvdsubenc.c b/libavcodec/dvdsubenc.c index 26afdc6..ff95ed2 100644 --- a/libavcodec/dvdsubenc.c +++

Re: [FFmpeg-devel] [PATCH v1 00/11] Replace magic number by micro for bprint init

2018-06-10 Thread Nicolas George
Jun Zhao (2018-06-10): > v1: - Replace magic number by micro for bprint init I will not oppose the patch series, but I think it is useless clutter of the history. The special values are not magic, they are logical or standard. But if anybody applies this, please fix the typo in the commit

[FFmpeg-devel] [PATCH v1 08/11] lavf/icecast: Replace magic number by micro for bprint init

2018-06-10 Thread Jun Zhao
Replace magic number by micro for bprint init. Signed-off-by: Jun Zhao --- libavformat/icecast.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavformat/icecast.c b/libavformat/icecast.c index 02e3e38..c93b06b 100644 --- a/libavformat/icecast.c +++

[FFmpeg-devel] [PATCH v1 07/11] lavfi/graphdump: Replace magic number by micro for bprint init

2018-06-10 Thread Jun Zhao
Replace magic number by micro for bprint init. Signed-off-by: Jun Zhao --- libavfilter/graphdump.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavfilter/graphdump.c b/libavfilter/graphdump.c index 7377719..8bc7b16 100644 --- a/libavfilter/graphdump.c +++

[FFmpeg-devel] [PATCH v1 09/11] lavf/tedcaptionsdec: Replace magic number by micro for bprint init

2018-06-10 Thread Jun Zhao
Replace magic number by micro for bprint init. Signed-off-by: Jun Zhao --- libavformat/tedcaptionsdec.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavformat/tedcaptionsdec.c b/libavformat/tedcaptionsdec.c index 774d499..cd6ab0c 100644 ---

[FFmpeg-devel] [PATCH v1 10/11] avutil/log: Replace magic number by micro for bprint init

2018-06-10 Thread Jun Zhao
Replace magic number by micro for bprint init. Signed-off-by: Jun Zhao --- libavutil/log.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/libavutil/log.c b/libavutil/log.c index 9b7d484..93a156b 100644 --- a/libavutil/log.c +++ b/libavutil/log.c @@ -247,9 +247,9 @@

[FFmpeg-devel] [PATCH v1 11/11] tests/bprint: Replace magic number by micro for bprint init

2018-06-10 Thread Jun Zhao
Replace magic number by micro for bprint init. Signed-off-by: Jun Zhao --- libavutil/tests/bprint.c | 12 ++-- 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/libavutil/tests/bprint.c b/libavutil/tests/bprint.c index d7f381d..5a46f55 100644 --- a/libavutil/tests/bprint.c

[FFmpeg-devel] [PATCH v1 05/11] lavc/pngdec: Replace magic number by micro for bprint init

2018-06-10 Thread Jun Zhao
Replace magic number by micro for bprint init. Signed-off-by: Jun Zhao --- libavcodec/pngdec.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libavcodec/pngdec.c b/libavcodec/pngdec.c index f93f200..0114468 100644 --- a/libavcodec/pngdec.c +++ b/libavcodec/pngdec.c @@

[FFmpeg-devel] [PATCH v1 06/11] lavfi/af_amerge: Replace magic number by micro for bprint init

2018-06-10 Thread Jun Zhao
Replace magic number by micro for bprint init. Signed-off-by: Jun Zhao --- libavfilter/af_amerge.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavfilter/af_amerge.c b/libavfilter/af_amerge.c index 9bed8e7..3961c90 100644 --- a/libavfilter/af_amerge.c +++

[FFmpeg-devel] [PATCH v1 01/11] fftools/cmdutils: Replace magic number by micro for bprint init

2018-06-10 Thread Jun Zhao
Replace magic number by micro for bprint init. Signed-off-by: Jun Zhao --- fftools/cmdutils.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fftools/cmdutils.c b/fftools/cmdutils.c index 844f433..b8de319 100644 --- a/fftools/cmdutils.c +++ b/fftools/cmdutils.c @@ -1018,7

[FFmpeg-devel] [PATCH v1 00/11] Replace magic number by micro for bprint init

2018-06-10 Thread Jun Zhao
v1: - Replace magic number by micro for bprint init Jun Zhao (11): fftools/cmdutils: Replace magic number by micro for bprint init fftools/ffmpeg: Replace magic number by micro for bprint init fftools/ffmpeg_filter: Replace magic number by micro for bprint init lavc/dvdsubenc: Replace

[FFmpeg-devel] [PATCH v1 02/11] fftools/ffmpeg: Replace magic number by micro for bprint init

2018-06-10 Thread Jun Zhao
Replace magic number by micro for bprint init. Signed-off-by: Jun Zhao --- fftools/ffmpeg.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fftools/ffmpeg.c b/fftools/ffmpeg.c index d4ac690..73616b9 100644 --- a/fftools/ffmpeg.c +++ b/fftools/ffmpeg.c @@ -1689,7 +1689,7 @@

[FFmpeg-devel] [PATCH v1 03/11] fftools/ffmpeg_filter: Replace magic number by micro for bprint init

2018-06-10 Thread Jun Zhao
Replace magic number by micro for bprint init. Signed-off-by: Jun Zhao --- fftools/ffmpeg_filter.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fftools/ffmpeg_filter.c b/fftools/ffmpeg_filter.c index 068f499..6518d50 100644 --- a/fftools/ffmpeg_filter.c +++

Re: [FFmpeg-devel] [PATCH 3/4 v2] avcodec/vc1: rewrite vc1_decode_i_blocks to align with VC-1 spec

2018-06-10 Thread Jerome Borsboom
Thank you for the rigorous testing of my patches. I try to be careful when changing things, but every now and then I unwittingly may break things that do not surface in setup. There is something strange with the backtraces. The 'Slice header damaged' error indicates that the source file is coded