Re: [FFmpeg-devel] [libav-devel] [PATCH] alsdec: validate time diff index

2015-04-20 Thread Thilo Borgmann
Am 20.04.15 um 23:20 schrieb Andreas Cadhalpun: > On 19.04.2015 22:20, Luca Barbato wrote: >> On 18/04/15 18:58, Andreas Cadhalpun wrote: >>> If begin is smaller than t, the subtraction 'begin -= t' wraps around, >>> because begin is unsigned. The same applies for end < t. >>> >>> This causes segme

Re: [FFmpeg-devel] [PATCH v4] libavcodec: Add FLAC API test

2015-04-20 Thread James Almer
On 19/04/15 9:03 PM, Ludmila Glinskih wrote: > +static int run_test(AVCodec *enc, AVCodec *dec, AVCodecContext *enc_ctx, > +AVCodecContext *dec_ctx) > +{ > +AVPacket enc_pkt; > +AVFrame *in_frame, *out_frame; > +uint8_t *raw_in = NULL, *raw_out = NULL; > +int in

Re: [FFmpeg-devel] [PATCH 1/2] refactored srtdec

2015-04-20 Thread Clément Bœsch
On Fri, Apr 10, 2015 at 04:14:59AM -0300, James Almer wrote: [...] > IMO all this belongs in ass.c/h instead of two new files. Not really, it's about parsing "html"-like markup. The fact that it's generating ASS is accessory. It could be something else (if the internal representation of decoded te

Re: [FFmpeg-devel] [FFmpeg-cvslog] libavcodec: Add FLAC API test

2015-04-20 Thread Clément Bœsch
On Mon, Apr 20, 2015 at 02:37:27PM +0200, Ludmila Glinskih wrote: > ffmpeg | branch: master | Ludmila Glinskih | Mon Apr 20 > 03:03:08 2015 +0300| [be70c79af2bbbf8818707075ebc376d0be137582] | committer: > Michael Niedermayer > > libavcodec: Add FLAC API test > > Signed-off-by: Ludmila Glinskih

Re: [FFmpeg-devel] youtube patches

2015-04-20 Thread Clément Bœsch
On Wed, Apr 08, 2015 at 07:15:51PM +0200, Gilles Chanteperdrix wrote: > Enough talking, here are some patches, and I will let the > maintainers decide. > > On the libquvi side, the first patch cleans up the error handling in > the libquvi_read_header function to avoid calling libquvi cleanup > fu

Re: [FFmpeg-devel] [PATCH] avfilter/vf_colorkey: Add colorkey video filter

2015-04-20 Thread Clément Bœsch
On Sun, Apr 19, 2015 at 06:15:48PM +0200, Timo Rothenpieler wrote: > --- > Changelog | 1 + > MAINTAINERS | 1 + > doc/filters.texi | 39 > libavfilter/Makefile | 1 + > libavfilter/allfilters.c | 1 + > libavfilter/vf_colorkey.c | 226

Re: [FFmpeg-devel] [PATCH] oggparsedirac: check return value of init_get_bits

2015-04-20 Thread Clément Bœsch
On Mon, Apr 20, 2015 at 02:29:54PM -0700, Christopher Watkins wrote: > > From a93fa19467ac2568cfe32332b789b315e37dbdf1 Mon Sep 17 00:00:00 2001 > From: Chris Watkins > Date: Mon, 20 Apr 2015 14:23:57 -0700 > Subject: [PATCH] oggparsedirac: check return value of init_get_bits > > If init_get_bit

Re: [FFmpeg-devel] [libav-devel] [PATCH] aacpsy: avoid norm_fac becoming NaN

2015-04-20 Thread Claudio Freire
On Mon, Apr 20, 2015 at 9:13 PM, Michael Niedermayer wrote: > On Mon, Apr 20, 2015 at 09:07:14PM -0300, Claudio Freire wrote: >> On Mon, Apr 20, 2015 at 8:59 PM, Claudio Freire >> wrote: >> > On Mon, Apr 20, 2015 at 8:32 PM, Andreas Cadhalpun >> > wrote: >> > The long version: >> > >> >

Re: [FFmpeg-devel] [PATCH 1/2] avformat/nsvdec: remove trace log from probe(), this is better done generically not per format

2015-04-20 Thread Michael Niedermayer
On Mon, Apr 20, 2015 at 09:32:15PM +0200, Paul B Mahol wrote: > Dana 20. 4. 2015. 17:39 osoba "Michael Niedermayer" > napisala je: > > > > Signed-off-by: Michael Niedermayer > > --- > > libavformat/nsvdec.c |1 - > > 1 file changed, 1 deletion(-) > > > > diff --git a/libavformat/nsvdec.c b/l

Re: [FFmpeg-devel] [libav-devel] [PATCH] aacpsy: avoid norm_fac becoming NaN

2015-04-20 Thread Michael Niedermayer
On Mon, Apr 20, 2015 at 09:07:14PM -0300, Claudio Freire wrote: > On Mon, Apr 20, 2015 at 8:59 PM, Claudio Freire > wrote: > > On Mon, Apr 20, 2015 at 8:32 PM, Andreas Cadhalpun > > wrote: > > The long version: > > > > ath should approximate the shape of the absolute hearing threshol

Re: [FFmpeg-devel] [libav-devel] [PATCH] aacpsy: avoid norm_fac becoming NaN

2015-04-20 Thread Claudio Freire
On Mon, Apr 20, 2015 at 8:59 PM, Claudio Freire wrote: > On Mon, Apr 20, 2015 at 8:32 PM, Andreas Cadhalpun > wrote: > The long version: > > ath should approximate the shape of the absolute hearing threshold, so > yes, it's best if it really uses the minimum, since that will preve

Re: [FFmpeg-devel] [PATCH] avformat/mp3dec: Adjust returned timestamp in the CBR seeking case

2015-04-20 Thread Michael Niedermayer
On Mon, Apr 20, 2015 at 09:54:22PM +0200, wm4 wrote: > On Mon, 20 Apr 2015 21:25:44 +0200 > Michael Niedermayer wrote: > > > With this the returned timestamp should match the packet instead of > > the requested timestamp, which may lay between packets > > > > Signed-off-by: Michael Niedermayer

Re: [FFmpeg-devel] [libav-devel] [PATCH] aacpsy: avoid norm_fac becoming NaN

2015-04-20 Thread Claudio Freire
On Mon, Apr 20, 2015 at 8:32 PM, Andreas Cadhalpun wrote: The long version: ath should approximate the shape of the absolute hearing threshold, so yes, it's best if it really uses the minimum, since that will prevent clipping of the ath curve and result in a more accurate

Re: [FFmpeg-devel] [libav-devel] [PATCH] aacpsy: avoid norm_fac becoming NaN

2015-04-20 Thread Andreas Cadhalpun
On 21.04.2015 01:13, Claudio Freire wrote: > On Mon, Apr 20, 2015 at 7:18 PM, Andreas Cadhalpun > wrote: >> On 20.04.2015 22:15, Claudio Freire wrote: >>> TL;DR, band->thr should not be negative ever, band->thr == 0.0f would >>> cause lots of issues on its own if band->energy != 0.0f in such a cas

Re: [FFmpeg-devel] [PATCH] avformat/mp3dec: Adjust returned timestamp in the CBR seeking case

2015-04-20 Thread Michael Niedermayer
On Mon, Apr 20, 2015 at 09:47:33PM +0200, wm4 wrote: > On Mon, 20 Apr 2015 21:25:44 +0200 > Michael Niedermayer wrote: > > > With this the returned timestamp should match the packet instead of > > the requested timestamp, which may lay between packets > > > > Signed-off-by: Michael Niedermayer

Re: [FFmpeg-devel] [PATCH] webmdashenc: Fix potential memory leak

2015-04-20 Thread Michael Niedermayer
On Mon, Apr 20, 2015 at 11:20:41AM -0700, Vignesh Venkatasubramanian wrote: > Fix potential memory leak in WebM DASH Muxer. This fixes coverity > scan CID 1295088. > > Signed-off-by: Vignesh Venkatasubramanian > --- > libavformat/webmdashenc.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion

Re: [FFmpeg-devel] [libav-devel] [PATCH] aacpsy: avoid norm_fac becoming NaN

2015-04-20 Thread Claudio Freire
On Mon, Apr 20, 2015 at 7:18 PM, Andreas Cadhalpun wrote: > On 20.04.2015 22:15, Claudio Freire wrote: >> TL;DR, band->thr should not be negative ever, band->thr == 0.0f would >> cause lots of issues on its own if band->energy != 0.0f in such a case >> (though I don't see how band->thr can be 0.0f

Re: [FFmpeg-devel] Patch for High color and High bit-depth support

2015-04-20 Thread James Zern
On Sat, Apr 18, 2015 at 1:06 PM, James Zern wrote: > On Thu, Apr 16, 2015 at 6:19 PM, Debargha Mukherjee > wrote: >> Resolutions inline... >> >> From d84e140ed83bdc3889720e4a6af330198176b839 Mon Sep 17 00:00:00 2001 >> From: Deb Mukherjee >> Date: Wed, 25 Mar 2015 17:10:16 -0700 >> Subject: [PA

Re: [FFmpeg-devel] [PATCH v4] libavcodec: Add FLAC API test

2015-04-20 Thread Kieran Kunhya
On 20 April 2015 at 01:03, Ludmila Glinskih wrote: > Signed-off-by: Ludmila Glinskih > --- > libavcodec/Makefile| 1 + > libavcodec/api-flac-test.c | 290 > + I would put this in its own directory. I think the next thing you should work on i

Re: [FFmpeg-devel] [libav-devel] [PATCH] aacpsy: avoid norm_fac becoming NaN

2015-04-20 Thread Andreas Cadhalpun
On 20.04.2015 22:15, Claudio Freire wrote: > TL;DR, band->thr should not be negative ever, band->thr == 0.0f would > cause lots of issues on its own if band->energy != 0.0f in such a case > (though I don't see how band->thr can be 0.0f if band->energy is not), This could happen in pathological cas

[FFmpeg-devel] [PATCH] oggparsedirac: check return value of init_get_bits

2015-04-20 Thread Christopher Watkins
From a93fa19467ac2568cfe32332b789b315e37dbdf1 Mon Sep 17 00:00:00 2001 From: Chris Watkins Date: Mon, 20 Apr 2015 14:23:57 -0700 Subject: [PATCH] oggparsedirac: check return value of init_get_bits If init_get_bits fails the GetBitContext is invalid and must not be used. Check the return value in

Re: [FFmpeg-devel] [libav-devel] [PATCH] aacpsy: avoid norm_fac becoming NaN

2015-04-20 Thread Andreas Cadhalpun
On 20.04.2015 12:53, Luca Barbato wrote: > On 18/04/15 22:37, Andreas Cadhalpun wrote: >> I think the crash should be fixed before a larger reshaping. >> > > I do not see how you can fix it w/out having a separate code path for > 0-energy/0-threshold band. And getting that would require that kind

Re: [FFmpeg-devel] [libav-devel] [PATCH] alsdec: validate time diff index

2015-04-20 Thread Andreas Cadhalpun
On 19.04.2015 22:20, Luca Barbato wrote: > On 18/04/15 18:58, Andreas Cadhalpun wrote: >> If begin is smaller than t, the subtraction 'begin -= t' wraps around, >> because begin is unsigned. The same applies for end < t. >> >> This causes segmentation faults. > > Actually, the access to raw_buffer

Re: [FFmpeg-devel] [PATCH] avcodec/mips: MSA (MIPS-SIMD-Arch) optimizations for H264 lpf and weight/biweight functions

2015-04-20 Thread Timothy Gu
On Mon, Apr 20, 2015 at 12:04 PM James Almer wrote: > > For that matter, do mips processors even have some sort of cpuid > instruction at all? AFAIK it does. See: - https://github.com/torvalds/linux/blob/master/arch/mips/kernel/cpu-probe.c#L519-L520 - https://github.com/torvalds/linux/blob/mast

Re: [FFmpeg-devel] [libav-devel] [PATCH] aacpsy: avoid norm_fac becoming NaN

2015-04-20 Thread Claudio Freire
On Sat, Apr 18, 2015 at 10:34 AM, Michael Niedermayer wrote: > On Sat, Apr 18, 2015 at 01:59:53PM +0200, Andreas Cadhalpun wrote: >> On 18.04.2015 04:40, Michael Niedermayer wrote: >> > On Sat, Apr 18, 2015 at 12:55:08AM +0200, Andreas Cadhalpun wrote: >> >> The problem is that minath is not the m

Re: [FFmpeg-devel] [PATCH] avformat/mp3dec: Adjust returned timestamp in the CBR seeking case

2015-04-20 Thread wm4
On Mon, 20 Apr 2015 21:25:44 +0200 Michael Niedermayer wrote: > With this the returned timestamp should match the packet instead of > the requested timestamp, which may lay between packets > > Signed-off-by: Michael Niedermayer > --- > libavformat/mp3dec.c |6 ++ > tests/r

Re: [FFmpeg-devel] [PATCH] avformat/mp3dec: Adjust returned timestamp in the CBR seeking case

2015-04-20 Thread wm4
On Mon, 20 Apr 2015 21:25:44 +0200 Michael Niedermayer wrote: > With this the returned timestamp should match the packet instead of > the requested timestamp, which may lay between packets > > Signed-off-by: Michael Niedermayer > --- > libavformat/mp3dec.c |6 ++ > tests/r

Re: [FFmpeg-devel] [PATCH 1/2] ffmpeg: add option not to offset seek position by start time

2015-04-20 Thread Michael Niedermayer
On Mon, Apr 20, 2015 at 07:36:51PM +0200, wm4 wrote: > --- > doc/ffmpeg.texi | 7 +++ > ffmpeg.h| 2 ++ > ffmpeg_opt.c| 5 - > 3 files changed, 13 insertions(+), 1 deletion(-) applied thanks [...] -- Michael GnuPG fingerprint: 9FF2128B147EF6730BADF133611EC787040B0FAB I

Re: [FFmpeg-devel] [PATCH 2/2] fate: gapless: fix mp3 tests

2015-04-20 Thread Michael Niedermayer
On Mon, Apr 20, 2015 at 07:36:52PM +0200, wm4 wrote: > Seeking to a negative time did not have the desired effect of seeking to > the next valid position (the file start). On the other hand, just > "-ss 0" will normally seek to a position higher than 0, because it adds > the start time of the file.

Re: [FFmpeg-devel] [PATCH 1/2] avformat/nsvdec: remove trace log from probe(), this is better done generically not per format

2015-04-20 Thread Paul B Mahol
Dana 20. 4. 2015. 17:39 osoba "Michael Niedermayer" napisala je: > > Signed-off-by: Michael Niedermayer > --- > libavformat/nsvdec.c |1 - > 1 file changed, 1 deletion(-) > > diff --git a/libavformat/nsvdec.c b/libavformat/nsvdec.c > index 5002bd7..de55396 100644 > --- a/libavformat/nsvdec.c

[FFmpeg-devel] [PATCH] avformat/mp3dec: Adjust returned timestamp in the CBR seeking case

2015-04-20 Thread Michael Niedermayer
With this the returned timestamp should match the packet instead of the requested timestamp, which may lay between packets Signed-off-by: Michael Niedermayer --- libavformat/mp3dec.c |6 ++ tests/ref/fate/gapless-mp3-notoc |2 +- 2 files changed, 7 insertions(+), 1 delet

Re: [FFmpeg-devel] [PATCH] avcodec/mips: MSA (MIPS-SIMD-Arch) optimizations for H264 lpf and weight/biweight functions

2015-04-20 Thread James Almer
On 20/04/15 3:58 PM, Timothy Gu wrote: > You should fold the _init_msa() function into this function. You also need > to add the flags into libavutil/mips/cpu.h as the user might not want to > use MSA at runtime. > > See libavutil/cpu.h and libavutil/*/cpu.h. > > Timothy User selectable cpuflags

Re: [FFmpeg-devel] [PATCH] avcodec/mips: MSA (MIPS-SIMD-Arch) optimizations for H264 lpf and weight/biweight functions

2015-04-20 Thread Timothy Gu
On Mon, Apr 20, 2015 at 2:54 AM wrote: > From: Shivraj Patil > > Signed-off-by: Shivraj Patil > --- > libavcodec/h264dsp.c|1 + > libavcodec/h264dsp.h|2 + > libavcodec/mips/Makefile|2 + > libavcodec/mips/h264dsp_init_mips.c | 74 + >

[FFmpeg-devel] [PATCH] webmdashenc: Fix potential memory leak

2015-04-20 Thread Vignesh Venkatasubramanian
Fix potential memory leak in WebM DASH Muxer. This fixes coverity scan CID 1295088. Signed-off-by: Vignesh Venkatasubramanian --- libavformat/webmdashenc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavformat/webmdashenc.c b/libavformat/webmdashenc.c index a8eb8ac..6b9

[FFmpeg-devel] [PATCH 2/2] fate: gapless: fix mp3 tests

2015-04-20 Thread wm4
Seeking to a negative time did not have the desired effect of seeking to the next valid position (the file start). On the other hand, just "-ss 0" will normally seek to a position higher than 0, because it adds the start time of the file. (The start time is not 0 because the gapless code skips a fe

[FFmpeg-devel] [PATCH 1/2] ffmpeg: add option not to offset seek position by start time

2015-04-20 Thread wm4
--- doc/ffmpeg.texi | 7 +++ ffmpeg.h| 2 ++ ffmpeg_opt.c| 5 - 3 files changed, 13 insertions(+), 1 deletion(-) diff --git a/doc/ffmpeg.texi b/doc/ffmpeg.texi index d995995..c66cb16 100644 --- a/doc/ffmpeg.texi +++ b/doc/ffmpeg.texi @@ -1158,6 +1158,13 @@ This option enables

[FFmpeg-devel] [PATCH 1/2] avformat/nsvdec: remove trace log from probe(), this is better done generically not per format

2015-04-20 Thread Michael Niedermayer
Signed-off-by: Michael Niedermayer --- libavformat/nsvdec.c |1 - 1 file changed, 1 deletion(-) diff --git a/libavformat/nsvdec.c b/libavformat/nsvdec.c index 5002bd7..de55396 100644 --- a/libavformat/nsvdec.c +++ b/libavformat/nsvdec.c @@ -723,7 +723,6 @@ static int nsv_probe(AVProbeData *p

[FFmpeg-devel] [PATCH 2/2] avformat/format: Add generic trace av_log in av_probe_input_format3()

2015-04-20 Thread Michael Niedermayer
Signed-off-by: Michael Niedermayer --- libavformat/format.c |2 ++ 1 file changed, 2 insertions(+) diff --git a/libavformat/format.c b/libavformat/format.c index fa94b7d..7df06b7 100644 --- a/libavformat/format.c +++ b/libavformat/format.c @@ -195,6 +195,8 @@ AVInputFormat *av_probe_input_fo

Re: [FFmpeg-devel] [PATCH 2/2] libavutil: Make changes in softfloat needed for fixed point aac decoder.

2015-04-20 Thread Michael Niedermayer
On Mon, Apr 20, 2015 at 01:33:16PM +, Nedeljko Babic wrote: > > >> -static av_const SoftFloat av_div_sf(SoftFloat a, SoftFloat b){ > >> -a.exp -= b.exp+1; > >> -a.mant = ((int64_t)a.mant<<(ONE_BITS+1)) / b.mant; > >> -return av_normalize1_sf(a); > >> +return av_normalize1_sf((S

Re: [FFmpeg-devel] [PATCH 13/14] tests: Add aac_fixed decoder test

2015-04-20 Thread Nedeljko Babic
>> From: Nedeljko Babic >> >> Signed-off-by: Nedeljko Babic >> --- >> tests/fate/aac.mak | 63 >> ++ >> 1 file changed, 63 insertions(+) >> >> diff --git a/tests/fate/aac.mak b/tests/fate/aac.mak >> index 34823be..d90b143 100644 >> --- a/tes

Re: [FFmpeg-devel] [PATCH 2/2] libavutil: Make changes in softfloat needed for fixed point aac decoder.

2015-04-20 Thread Nedeljko Babic
>> -static av_const SoftFloat av_div_sf(SoftFloat a, SoftFloat b){ >> -a.exp -= b.exp+1; >> -a.mant = ((int64_t)a.mant<<(ONE_BITS+1)) / b.mant; >> -return av_normalize1_sf(a); >> +return av_normalize1_sf((SoftFloat){a.mant, --a.exp}); >

Re: [FFmpeg-devel] [PATCH v4] libavcodec: Add FLAC API test

2015-04-20 Thread Michael Niedermayer
On Mon, Apr 20, 2015 at 02:38:47PM +0200, Michael Niedermayer wrote: > On Mon, Apr 20, 2015 at 03:03:08AM +0300, Ludmila Glinskih wrote: > > Signed-off-by: Ludmila Glinskih > > --- > > libavcodec/Makefile| 1 + > > libavcodec/api-flac-test.c | 290 > > ++

Re: [FFmpeg-devel] [PATCH] avutil/mips/generic_macros_msa: volatile doesnt need __

2015-04-20 Thread Michael Niedermayer
On Mon, Apr 20, 2015 at 11:14:06AM +, Nedeljko Babic wrote: > LGTM applied thanks [...] -- Michael GnuPG fingerprint: 9FF2128B147EF6730BADF133611EC787040B0FAB I have often repented speaking, but never of holding my tongue. -- Xenocrates signature.asc Description: Digital signature __

Re: [FFmpeg-devel] [PATCH v4] Fix mistake with repeating values in first and second channels

2015-04-20 Thread Michael Niedermayer
On Mon, Apr 20, 2015 at 10:40:57AM +0300, Ludmila Glinskih wrote: > Signed-off-by: Ludmila Glinskih > --- > libavcodec/api-flac-test.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) stashed into the patch and applied thanks [...] -- Michael GnuPG fingerprint: 9FF2128B147EF6730BAD

Re: [FFmpeg-devel] [PATCH v4] libavcodec: Add FLAC API test

2015-04-20 Thread Michael Niedermayer
On Mon, Apr 20, 2015 at 03:03:08AM +0300, Ludmila Glinskih wrote: > Signed-off-by: Ludmila Glinskih > --- > libavcodec/Makefile| 1 + > libavcodec/api-flac-test.c | 290 > + > tests/fate/libavcodec.mak | 6 + > 3 files changed, 297 inserti

Re: [FFmpeg-devel] [PATCH] avutil/mips/generic_macros_msa: volatile doesnt need __

2015-04-20 Thread Nedeljko Babic
LGTM Thanks, Nedeljko Od: ffmpeg-devel-boun...@ffmpeg.org [ffmpeg-devel-boun...@ffmpeg.org] u ime korisnika Michael Niedermayer [michae...@gmx.at] Poslato: 18. april 2015 12:22 Za: FFmpeg development discussions and patches Tema: [FFmpeg-devel] [PATCH] avu

Re: [FFmpeg-devel] [PATCH v4] Fix mistake with repeating values in first and second channels

2015-04-20 Thread Ludmila Glinskih
Ooops, wrong threat. I need one more try) On Mon, Apr 20, 2015 at 10:36 AM, Ludmila Glinskih wrote: > Signed-off-by: Ludmila Glinskih > --- > libavcodec/api-flac-test.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/libavcodec/api-flac-test.c b/libavcodec/api-flac-test

Re: [FFmpeg-devel] [PATCH v4] Fix mistake with repeating values in first and second channels

2015-04-20 Thread Ludmila Glinskih
Oooops, this was meant to be in the last thread =) On Mon, Apr 20, 2015 at 10:34 AM, Ludmila Glinskih wrote: > Signed-off-by: Ludmila Glinskih > --- > libavcodec/api-flac-test.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/libavcodec/api-flac-test.c b/libavcodec/api-

[FFmpeg-devel] [PATCH v4] Fix mistake with repeating values in first and second channels

2015-04-20 Thread Ludmila Glinskih
Signed-off-by: Ludmila Glinskih --- libavcodec/api-flac-test.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavcodec/api-flac-test.c b/libavcodec/api-flac-test.c index b036385..38b2613 100644 --- a/libavcodec/api-flac-test.c +++ b/libavcodec/api-flac-test.c @@ -44,7 +44,7

[FFmpeg-devel] [PATCH v4] Fix mistake with repeating values in first and second channels

2015-04-20 Thread Ludmila Glinskih
Signed-off-by: Ludmila Glinskih --- libavcodec/api-flac-test.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavcodec/api-flac-test.c b/libavcodec/api-flac-test.c index b036385..38b2613 100644 --- a/libavcodec/api-flac-test.c +++ b/libavcodec/api-flac-test.c @@ -44,7 +44,7

[FFmpeg-devel] [PATCH v4] Fix mistake with repeating values in first and second channels

2015-04-20 Thread Ludmila Glinskih
Signed-off-by: Ludmila Glinskih --- libavcodec/api-flac-test.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavcodec/api-flac-test.c b/libavcodec/api-flac-test.c index b036385..38b2613 100644 --- a/libavcodec/api-flac-test.c +++ b/libavcodec/api-flac-test.c @@ -44,7 +44,7