On 15 November 2014 09:00, Mika Raento wrote:
> On 14 November 2014 21:51, Michael Niedermayer wrote:
>
>> On Fri, Nov 14, 2014 at 07:12:34PM +0200, Mika Raento wrote:
>> > this would cause mfra to be ignored in files larger than 2G
>> > ---
>> > libavformat/mov.c | 22 ++
>>
On 14 November 2014 21:51, Michael Niedermayer wrote:
> On Fri, Nov 14, 2014 at 07:12:34PM +0200, Mika Raento wrote:
> > this would cause mfra to be ignored in files larger than 2G
> > ---
> > libavformat/mov.c | 22 ++
> > 1 file changed, 14 insertions(+), 8 deletions(-)
>
>
this would cause mfra to be ignored in files larger than 2G
---
libavformat/mov.c | 20
1 file changed, 12 insertions(+), 8 deletions(-)
diff --git a/libavformat/mov.c b/libavformat/mov.c
index 6ba7b96..506c1a6 100644
--- a/libavformat/mov.c
+++ b/libavformat/mov.c
@@ -3820,3
On Fri, Nov 14, 2014 at 09:00:31PM -0700, Pavel Koshevoy wrote:
> On 11/14/14 07:34, Michael Niedermayer wrote:
> >On Fri, Nov 14, 2014 at 06:45:55AM -0700, Pavel Koshevoy wrote:
> >>On Nov 13, 2014 4:15 PM, "Michael Niedermayer" wrote:
> >>>On Fri, Nov 07, 2014 at 03:12:19PM +0100, Michael Nieder
Thank you for discussing about this.
Michael Niedermayer wrote in <20141114203251.GX32286@nb4>
>> +ctx->has_palette = 0;
>> +ret = avio_open2(&ifo, p, AVIO_FLAG_READ, NULL, NULL);
>
>libavcodec does not depend on libavformat, thus libavcodec cannot
>use avio_* directly. I should have reali
On 11/14/14 07:34, Michael Niedermayer wrote:
On Fri, Nov 14, 2014 at 06:45:55AM -0700, Pavel Koshevoy wrote:
On Nov 13, 2014 4:15 PM, "Michael Niedermayer" wrote:
On Fri, Nov 07, 2014 at 03:12:19PM +0100, Michael Niedermayer wrote:
This needs to be benchmarked, i do not have ppc hw
This is o
On Sat, Nov 15, 2014 at 02:04:56AM +0100, Tomas Härdin wrote:
> On Wed, 2014-11-12 at 12:15 -0800, Mark Reid wrote:
> > ---
> > libavformat/mxfdec.c | 36 +++-
> > 1 file changed, 23 insertions(+), 13 deletions(-)
> >
> > diff --git a/libavformat/mxfdec.c b/libavfo
Hi!
Attached patch fixes ticket #4107 for me.
An alternative would be to force the sar to 4:3
if h264 10bit 1440x1080 video has sar 3:4.
Please review, Carl Eugen
diff --git a/libavformat/mxfdec.c b/libavformat/mxfdec.c
index b533e2a..3ac5e68 100644
--- a/libavformat/mxfdec.c
+++ b/libavformat/m
On Fri, Nov 14, 2014 at 12:04:51AM +0100, Michael Niedermayer wrote:
> Signed-off-by: Michael Niedermayer
> ---
> libavfilter/vf_tinterlace.c |1 +
> 1 file changed, 1 insertion(+)
applied
[...]
--
Michael GnuPG fingerprint: 9FF2128B147EF6730BADF133611EC787040B0FAB
DNS cache poisoning
On 15.11.2014 01:24, Michael Niedermayer wrote:
+/**
+ * String containing paris of key and values describing recommended
encoder configuration.
+ * Paris are separated by ','.
+ * Keys are separated from values by '='.
+ */
+char *recommended_encoder_configuration;
thi
On Wed, Nov 12, 2014 at 01:19:20PM +0100, Michael Niedermayer wrote:
> On Tue, Nov 11, 2014 at 06:43:42PM +, Kieran Kunhya wrote:
> > ---
> > libavfilter/interlace.h | 59 +
> > libavfilter/vf_interlace.c | 55 +--
> > li
On Thursday, November 6, 2014, Timothy Gu wrote:
>
> The only instance of .table in the web source is the download page for the
> Git repos. I did not change that page because an unbordered table there is
> prettier IMO.
>
> I retained the .table-bordered style in case anyone want to use it in the
On Wed, 2014-11-12 at 12:15 -0800, Mark Reid wrote:
> ---
> libavformat/mxfdec.c | 36 +++-
> 1 file changed, 23 insertions(+), 13 deletions(-)
>
> diff --git a/libavformat/mxfdec.c b/libavformat/mxfdec.c
> index b533e2a..87f1e51 100644
> --- a/libavformat/mxfdec.c
On Fri, Nov 14, 2014 at 11:33:08PM +0100, Lukasz Marek wrote:
> On 12.11.2014 02:12, Michael Niedermayer wrote:
> >On Tue, Nov 11, 2014 at 11:59:32PM +0100, Lukasz Marek wrote:
> >>On 11.11.2014 14:46, Michael Niedermayer wrote:
> >>>the muxer might run in a seperate thread from the encoder, priv_d
In http_open_cnx, the patch restores the AVDictionary if connection needs to be
re-tried
because of a authentication/redirect status code.
Previously, if a 401/407/30x status code was encountered, http_open_cnx would
restart at the redo label, but any options
used by the underlying protocol woul
Le quartidi 24 brumaire, an CCXXIII, Michael Niedermayer a écrit :
> libavformat OTOH could read the IFO file with avio_open2/avio_read
> into extradata or some newly added ifo specific side data
> and dvdsubdec.c could then parse the palette out of that.
That would work. It can be even reasonably
On 12.11.2014 02:12, Michael Niedermayer wrote:
On Tue, Nov 11, 2014 at 11:59:32PM +0100, Lukasz Marek wrote:
On 11.11.2014 14:46, Michael Niedermayer wrote:
the muxer might run in a seperate thread from the encoder, priv_data
could change while its being accessed, iam not sure if that would
ca
On Sat, Nov 15, 2014 at 02:25:48AM +0900, TOYAMA Shin-ichi wrote:
> Thanks for many comments.
> Attached is the forth try.
> Please review it.
>
> --
> TOYAMA Shin-ichi mailto:sh...@wmail.plala.or.jp
> doc/decoders.texi |3 ++
> libavcodec/dvdsubdec.c | 58
>
On Fri, Nov 14, 2014 at 08:43:25PM +0100, Reimar Döffinger wrote:
> On Fri, Nov 14, 2014 at 08:37:47PM +0100, Reimar Döffinger wrote:
> > On Fri, Nov 14, 2014 at 03:19:26PM +0100, bzk0...@aol.com wrote:
> > > Dear ffmpeg developers,
> > >
> > > is there any (planned) support for the Hap video code
On Fri, Nov 14, 2014 at 07:12:34PM +0200, Mika Raento wrote:
> this would cause mfra to be ignored in files larger than 2G
> ---
> libavformat/mov.c | 22 ++
> 1 file changed, 14 insertions(+), 8 deletions(-)
why not just chage the type of ret to int64_t instead of adding a
se
On Fri, Nov 14, 2014 at 08:38:39PM +0100, Michael Niedermayer wrote:
> On Fri, Nov 14, 2014 at 07:59:17PM +0100, Reimar Döffinger wrote:
> > On Fri, Nov 14, 2014 at 02:39:46PM +0100, Michael Niedermayer wrote:
> > > Signed-off-by: Michael Niedermayer
> > > ---
> > > libavcodec/nellymoserdec.c |
On Fri, Nov 14, 2014 at 08:37:47PM +0100, Reimar Döffinger wrote:
> On Fri, Nov 14, 2014 at 03:19:26PM +0100, bzk0...@aol.com wrote:
> > Dear ffmpeg developers,
> >
> > is there any (planned) support for the Hap video codec in ffmpeg?
> >
> > https://github.com/vidvox/hap
> >
> > The implementat
On Fri, Nov 14, 2014 at 07:59:17PM +0100, Reimar Döffinger wrote:
> On Fri, Nov 14, 2014 at 02:39:46PM +0100, Michael Niedermayer wrote:
> > Signed-off-by: Michael Niedermayer
> > ---
> > libavcodec/nellymoserdec.c |9 ++---
> > libavcodec/nellymoserenc.c | 17 +++--
> > 2 f
On Fri, Nov 14, 2014 at 03:19:26PM +0100, bzk0...@aol.com wrote:
> Dear ffmpeg developers,
>
> is there any (planned) support for the Hap video codec in ffmpeg?
>
> https://github.com/vidvox/hap
>
> The implementation for Windows and Mac is available freely under a
> permissive license.
Where i
On Fri, Nov 14, 2014 at 02:39:46PM +0100, Michael Niedermayer wrote:
> Signed-off-by: Michael Niedermayer
> ---
> libavcodec/nellymoserdec.c |9 ++---
> libavcodec/nellymoserenc.c | 17 +++--
> 2 files changed, 17 insertions(+), 9 deletions(-)
>
> diff --git a/libavcodec/ne
On Thu, Nov 13, 2014 at 05:27:03PM +0100, Thilo Borgmann wrote:
>
> Changelog |1 +
> 1 file changed, 1 insertion(+)
> 4f0c70e7792ce0a91f17922adedea41493ad8f06
> 0002-Changelog-Mention-AVFoundation-screen-capturing.patch
> From c10ddfa22e3fb33711b3de83802cf2a1ced14741 Mon Sep 17 00:00:00 2
On Thu, Nov 13, 2014 at 05:27:31PM +0100, Thilo Borgmann wrote:
>
> indevs.texi | 86
> ++--
> 1 file changed, 72 insertions(+), 14 deletions(-)
> 931bb94973323751be2c390b38326844400594ad
> 0003-doc-indevs-Rework-and-update-documentati
On Thu, Nov 13, 2014 at 05:26:20PM +0100, Thilo Borgmann wrote:
>
> avfoundation.m | 16 ++--
> version.h |2 +-
> 2 files changed, 11 insertions(+), 7 deletions(-)
> 58ea3b1e525e529203d328c91f601844b8b31624
> 0001-lavd-avfoundation-Introduce-device-alias-none-to-all.pat
On Fri, 14 Nov 2014 15:56:11 + (UTC)
Carl Eugen Hoyos wrote:
> aol.com> writes:
>
> > is there any (planned) support for the Hap
> > video codec in ffmpeg?
>
> Could you elaborate a little on the use-case?
> I am curious what hardware does not allow to
> playback the usual codecs but al
Thanks for many comments.
Attached is the forth try.
Please review it.
--
TOYAMA Shin-ichi mailto:sh...@wmail.plala.or.jp
0001-New-option-for-obtaining-global-palette-from-.IFO-fi.patch
Description: Binary data
___
ffmpeg-devel mailing list
ffmpeg-deve
this would cause mfra to be ignored in files larger than 2G
---
libavformat/mov.c | 22 ++
1 file changed, 14 insertions(+), 8 deletions(-)
diff --git a/libavformat/mov.c b/libavformat/mov.c
index 6ba7b96..8bf16e7 100644
--- a/libavformat/mov.c
+++ b/libavformat/mov.c
@@ -3819
On Thu, Nov 13, 2014 at 05:37:44PM +0100, Thilo Borgmann wrote:
> Am 13.11.14 um 16:32 schrieb Timothy Gu:
> > On Thu, Nov 13, 2014 at 7:25 AM, Thilo Borgmann
> > wrote:
> >> Hi,
> >>
> >> this allows to record audio or video only and prevents to find a usable
> >> device
> >> in any case. This
Michael Niedermayer gmx.at> writes:
> > Attached patch hopefully fixes remote fate.
> >
> > Please comment, Carl Eugen
>
> might be ok
Patch applied.
> also maybe you can setup a x86 fate client for
> which these things make a difference so they can
> be tested in dependant of some odd non
On Fri, Nov 14, 2014 at 10:17:39AM +0100, Benoit Fouet wrote:
> ---
> libavcodec/pngdec.c | 88
> +
> 1 file changed, 49 insertions(+), 39 deletions(-)
applied
thx
[...]
--
Michael GnuPG fingerprint: 9FF2128B147EF6730BADF133611EC787040B0
On Fri, Nov 14, 2014 at 10:17:37AM +0100, Benoit Fouet wrote:
> ---
> libavcodec/pngdec.c | 6 ++
> 1 file changed, 2 insertions(+), 4 deletions(-)
applied
thx
[...]
--
Michael GnuPG fingerprint: 9FF2128B147EF6730BADF133611EC787040B0FAB
It is dangerous to be right in matters on which
On Fri, Nov 14, 2014 at 10:17:38AM +0100, Benoit Fouet wrote:
> ---
> libavcodec/pngdec.c | 144
> +++-
> 1 file changed, 75 insertions(+), 69 deletions(-)
applied
thx
[...]
--
Michael GnuPG fingerprint: 9FF2128B147EF6730BADF133611EC787040B0
On Fri, Nov 14, 2014 at 10:17:36AM +0100, Benoit Fouet wrote:
> ---
> libavcodec/pngdec.c | 18 +-
> 1 file changed, 9 insertions(+), 9 deletions(-)
applied
thx
[...]
--
Michael GnuPG fingerprint: 9FF2128B147EF6730BADF133611EC787040B0FAB
Freedom in capitalist society alway
On Fri, Nov 14, 2014 at 10:17:35AM +0100, Benoit Fouet wrote:
> ---
> libavcodec/pngdec.c | 33 -
> 1 file changed, 20 insertions(+), 13 deletions(-)
applied
thx
[...]
--
Michael GnuPG fingerprint: 9FF2128B147EF6730BADF133611EC787040B0FAB
Old school: Use th
aol.com> writes:
> is there any (planned) support for the Hap
> video codec in ffmpeg?
Could you elaborate a little on the use-case?
I am curious what hardware does not allow to
playback the usual codecs but allows SSD
upgrades.
Carl Eugen
___
ff
On Fri, Nov 14, 2014 at 10:17:34AM +0100, Benoit Fouet wrote:
> ---
> libavcodec/pngdec.c | 41 -
> 1 file changed, 24 insertions(+), 17 deletions(-)
applied
[...]
--
Michael GnuPG fingerprint: 9FF2128B147EF6730BADF133611EC787040B0FAB
In fact, the RI
On Fri, Nov 14, 2014 at 10:17:33AM +0100, Benoit Fouet wrote:
> ---
> libavcodec/pngdec.c | 207
> +++-
> 1 file changed, 109 insertions(+), 98 deletions(-)
applied
[...]
--
Michael GnuPG fingerprint: 9FF2128B147EF6730BADF133611EC787040B0FAB
On Fri, Nov 14, 2014 at 10:17:31AM +0100, Benoit Fouet wrote:
> ---
> libavcodec/pngdec.c | 48
> 1 file changed, 28 insertions(+), 20 deletions(-)
applied
[...]
--
Michael GnuPG fingerprint: 9FF2128B147EF6730BADF133611EC787040B0FAB
Republic
On Fri, Nov 14, 2014 at 10:17:32AM +0100, Benoit Fouet wrote:
> ---
> libavcodec/pngdec.c | 27 ++-
> 1 file changed, 18 insertions(+), 9 deletions(-)
applied
[...]
--
Michael GnuPG fingerprint: 9FF2128B147EF6730BADF133611EC787040B0FAB
Everything should be made as s
On Fri, Nov 14, 2014 at 03:19:26PM +0100, bzk0...@aol.com wrote:
> Dear ffmpeg developers,
>
> is there any (planned) support for the Hap video codec in ffmpeg?
i dont know of anyone working on it but that doesnt say much ...
do you want to work on implementing / porting it to FFmpeg ?
>
> ht
On Fri, Nov 14, 2014 at 10:17:30AM +0100, Benoit Fouet wrote:
> ---
> libavcodec/pngdec.c | 4 ++--
> 1 file changed, 2 insertions(+), 2 deletions(-)
applied
thx
[...]
--
Michael GnuPG fingerprint: 9FF2128B147EF6730BADF133611EC787040B0FAB
Avoid a single point of failure, be that a person
On Fri, Nov 14, 2014 at 06:45:55AM -0700, Pavel Koshevoy wrote:
> On Nov 13, 2014 4:15 PM, "Michael Niedermayer" wrote:
> >
> > On Fri, Nov 07, 2014 at 03:12:19PM +0100, Michael Niedermayer wrote:
> > > This needs to be benchmarked, i do not have ppc hw
> > > This is on big endian more similar to
Dear ffmpeg developers,
is there any (planned) support for the Hap video codec in ffmpeg?
https://github.com/vidvox/hap
The implementation for Windows and Mac is available freely under a
permissive license.
If not, does anyone know of any other means of encoding with Hap under
Linux?
Thanks in
On Fri, Nov 14, 2014 at 09:04:31AM +0100, Carl Eugen Hoyos wrote:
> Hi!
>
> Attached patch hopefully fixes remote fate.
>
> Please comment, Carl Eugen
might be ok
also maybe you can setup a x86 fate client for which these things make
a difference so they can be tested in dependant of some odd n
On Nov 13, 2014 4:15 PM, "Michael Niedermayer" wrote:
>
> On Fri, Nov 07, 2014 at 03:12:19PM +0100, Michael Niedermayer wrote:
> > This needs to be benchmarked, i do not have ppc hw
> > This is on big endian more similar to how the code was before
79e0255956bc8fcdb143f39b2e45db77144ac017
> >
> > S
Signed-off-by: Michael Niedermayer
---
libavcodec/nellymoserdec.c |9 ++---
libavcodec/nellymoserenc.c | 17 +++--
2 files changed, 17 insertions(+), 9 deletions(-)
diff --git a/libavcodec/nellymoserdec.c b/libavcodec/nellymoserdec.c
index ef16fd6..2d8a594 100644
--- a/liba
TODO: update APIChanges & version
Signed-off-by: Michael Niedermayer
---
libavutil/float_dsp.c | 11 ++-
libavutil/float_dsp.h |7 +++
2 files changed, 17 insertions(+), 1 deletion(-)
diff --git a/libavutil/float_dsp.c b/libavutil/float_dsp.c
index 78de1a1..467d7a7 100644
---
On Fri, Nov 14, 2014 at 11:44:23AM +, Nedeljko Babic wrote:
> >On Fri, Nov 07, 2014 at 04:08:08PM +0100, Nedeljko Babic wrote:
> >> From: Djordje Pesut
> >>
> >> Add fixed point implementation
> >[...]
> >
> >> diff --git a/libavutil/fixed_dsp.h b/libavutil/fixed_dsp.h
> >> index ff6f365..303
On Fri, Nov 14, 2014 at 11:41:14AM +, Nedeljko Babic wrote:
> >On Fri, Nov 07, 2014 at 04:08:06PM +0100, Nedeljko Babic wrote:
[...]
> >> +
> >> static av_const SoftFloat av_normalize_sf(SoftFloat a){
> >> if(a.mant){
> >> #if 1
> >> @@ -66,11 +74,12 @@ static inline av_const SoftFloat
>On Fri, Nov 07, 2014 at 04:08:08PM +0100, Nedeljko Babic wrote:
>> From: Djordje Pesut
>>
>> Add fixed point implementation
>[...]
>
>> diff --git a/libavutil/fixed_dsp.h b/libavutil/fixed_dsp.h
>> index ff6f365..3035d19 100644
>> --- a/libavutil/fixed_dsp.h
>> +++ b/libavutil/fixed_dsp.h
>> @@
>On Fri, Nov 07, 2014 at 04:08:06PM +0100, Nedeljko Babic wrote:
>> From: Djordje Pesut
>>
>> Make changes in softfloat.
>>
>> Functions for sqrt and sincos are added.
>>
>> Div function is improved.
>>
>> Some changes are made in order for code in softfloat to be usable in fixed
>> aac
>> de
>On Fri, Nov 07, 2014 at 04:08:06PM +0100, Nedeljko Babic wrote:
>> From: Djordje Pesut
>>
>> Make changes in softfloat.
>>
>> Functions for sqrt and sincos are added.
>>
>> Div function is improved.
>>
>> Some changes are made in order for code in softfloat to be usable in fixed
>> aac
>> d
On date Wednesday 2014-11-12 19:49:40 +0100, Michael Niedermayer encoded:
> Hi all
>
> I suggest to use 6250 USD from SPI (or FFIS) to fund a 3rd slot
> for the current FFmpeg OPW.
>
> Due to the limited time, (the deadline is like hmm now ...)
> i already agreed to OPW to pay for this slot (cond
On date Friday 2014-11-14 16:21:05 +0530, arwa arif encoded:
> On Mon, Nov 10, 2014 at 4:55 PM, Stefano Sabatini
> wrote:
>
> > On date Sunday 2014-11-09 23:06:17 +0530, arwa arif encoded:
> > [...]
> > > From 04b57f43e5904b9016001b86daa96c9a88f64b0e Mon Sep 17 00:00:00 2001
> > > From: Arwa Arif
On Mon, Nov 10, 2014 at 4:55 PM, Stefano Sabatini
wrote:
> On date Sunday 2014-11-09 23:06:17 +0530, arwa arif encoded:
> [...]
> > From 04b57f43e5904b9016001b86daa96c9a88f64b0e Mon Sep 17 00:00:00 2001
> > From: Arwa Arif
> > Date: Thu, 30 Oct 2014 22:06:20 +0530
> > Subject: [PATCH] lavfi: add
---
libavcodec/pngdec.c | 88 +
1 file changed, 49 insertions(+), 39 deletions(-)
diff --git a/libavcodec/pngdec.c b/libavcodec/pngdec.c
index d3c8ef9..57b73c1 100644
--- a/libavcodec/pngdec.c
+++ b/libavcodec/pngdec.c
@@ -786,44 +786,12 @@ stat
---
libavcodec/pngdec.c | 144 +++-
1 file changed, 75 insertions(+), 69 deletions(-)
diff --git a/libavcodec/pngdec.c b/libavcodec/pngdec.c
index 2f22ade..d3c8ef9 100644
--- a/libavcodec/pngdec.c
+++ b/libavcodec/pngdec.c
@@ -713,6 +713,79 @@ stati
---
libavcodec/pngdec.c | 18 +-
1 file changed, 9 insertions(+), 9 deletions(-)
diff --git a/libavcodec/pngdec.c b/libavcodec/pngdec.c
index 92ed59d..776b0db 100644
--- a/libavcodec/pngdec.c
+++ b/libavcodec/pngdec.c
@@ -761,7 +761,7 @@ static int decode_frame_png(AVCodecContext
---
libavcodec/pngdec.c | 6 ++
1 file changed, 2 insertions(+), 4 deletions(-)
diff --git a/libavcodec/pngdec.c b/libavcodec/pngdec.c
index 776b0db..2f22ade 100644
--- a/libavcodec/pngdec.c
+++ b/libavcodec/pngdec.c
@@ -840,8 +840,7 @@ exit_loop:
}
pd += s->image_li
---
libavcodec/pngdec.c | 41 -
1 file changed, 24 insertions(+), 17 deletions(-)
diff --git a/libavcodec/pngdec.c b/libavcodec/pngdec.c
index 8199bd8..9b5d5dd 100644
--- a/libavcodec/pngdec.c
+++ b/libavcodec/pngdec.c
@@ -671,6 +671,29 @@ static int decode
---
libavcodec/pngdec.c | 48
1 file changed, 28 insertions(+), 20 deletions(-)
diff --git a/libavcodec/pngdec.c b/libavcodec/pngdec.c
index abb8029..51956a6 100644
--- a/libavcodec/pngdec.c
+++ b/libavcodec/pngdec.c
@@ -519,6 +519,33 @@ static int
---
libavcodec/pngdec.c | 207 +++-
1 file changed, 109 insertions(+), 98 deletions(-)
diff --git a/libavcodec/pngdec.c b/libavcodec/pngdec.c
index 99a3a72..8199bd8 100644
--- a/libavcodec/pngdec.c
+++ b/libavcodec/pngdec.c
@@ -563,6 +563,114 @@ sta
---
libavcodec/pngdec.c | 33 -
1 file changed, 20 insertions(+), 13 deletions(-)
diff --git a/libavcodec/pngdec.c b/libavcodec/pngdec.c
index 9b5d5dd..92ed59d 100644
--- a/libavcodec/pngdec.c
+++ b/libavcodec/pngdec.c
@@ -694,6 +694,25 @@ static int decode_plte_ch
---
libavcodec/pngdec.c | 27 ++-
1 file changed, 18 insertions(+), 9 deletions(-)
diff --git a/libavcodec/pngdec.c b/libavcodec/pngdec.c
index 51956a6..99a3a72 100644
--- a/libavcodec/pngdec.c
+++ b/libavcodec/pngdec.c
@@ -543,6 +543,23 @@ static int decode_ihdr_chunk(AVC
---
libavcodec/pngdec.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/libavcodec/pngdec.c b/libavcodec/pngdec.c
index 835d962..abb8029 100644
--- a/libavcodec/pngdec.c
+++ b/libavcodec/pngdec.c
@@ -519,7 +519,7 @@ static int decode_text_chunk(PNGDecContext *s, uint32_t
l
Some janitor work in preparation of APNG support...
Benoit Fouet (10):
avcodec/pngdec: rename decode_frame to decode_frame_png
avcodec/pngdec: create a function to decode IHDR chunk.
avcodec/pngdec: create a function to decode pHYs chunk.
avcodec/pngdec: create a function to decode IDAT ch
Hi!
Attached patch hopefully fixes remote fate.
Please comment, Carl Eugen
diff --git a/tests/Makefile b/tests/Makefile
index 19800dd..7ef8132 100644
--- a/tests/Makefile
+++ b/tests/Makefile
@@ -47,7 +47,7 @@ tests/data/ffprobe-test.nut: ffmpeg$(EXESUF)
tests/test_copy.ffmeta
-flags +b
71 matches
Mail list logo