Re: [libav-devel] [PATCH] Update documentation links for av* programs.

2011-08-22 Thread Anton Khirnov
On Sun, 21 Aug 2011 22:11:11 -0700, Alex Converse wrote: > On Sun, Aug 21, 2011 at 9:53 PM, Ronald S. Bultje wrote: > > Hi, > > > > On Sun, Aug 21, 2011 at 9:44 PM, Alex Converse > > wrote: > >> --- > >>  src/documentation |    9 + > >>  1 files changed, 5 insertions(+), 4 deletions(-

[libav-devel] [PATCH] hyscale_fast_MMX2 segfaults on GNU/Linux due to failure to detect MAP_ANONYMOUS

2011-08-22 Thread Colin Watson
On a modern GNU/Linux system (specifically the current Ubuntu development branch), hyscale_fast_MMX2 segfaults. My test case was as follows: $ ./configure --disable-avfilter --enable-libtheora --enable-libvorbis && make && make libswscale/swscale-test $ gdb libswscale/swscale-test [...]

Re: [libav-devel] [PATCH] Revert "h264: Properly set coded_{width, height} when parsing H.264."

2011-08-22 Thread aviad rozenhek
On Sun, Aug 21, 2011 at 19:27, Luca Barbato wrote: > This reverts commit b47904d158709bdec1a9d40e83d1abadf50081dc. > > coded_{width, height} overwrites width and height in avcodec_open > --- > > I'm not sure if the avcodec_open behaviour is the expected one or not, > but seems correct according o

Re: [libav-devel] [PATCH] hyscale_fast_MMX2 segfaults on GNU/Linux due to failure to detect MAP_ANONYMOUS

2011-08-22 Thread Luca Barbato
On 8/22/11 10:46 AM, Colin Watson wrote: diff --git a/configure b/configure index 9c6ce0a..aba24c6 100755 --- a/configure +++ b/configure @@ -2464,7 +2464,7 @@ case $target_os in add_cppflags -U__STRICT_ANSI__ ;; linux) -add_cppflags -D_POSIX_C_SOURCE=200112 -D_

Re: [libav-devel] [PATCH 1/3] WavPack decoder: implement flush function

2011-08-22 Thread Kostya
On Sun, Aug 21, 2011 at 11:37:42PM +0300, Uoti Urpala wrote: > On Sat, 2011-08-20 at 18:14 +0200, Kostya Shishkov wrote: > > +static void wavpack_decode_flush(AVCodecContext *avctx) > > +{ > > +WavpackContext *s = avctx->priv_data; > > +int i; > > + > > +for (i = 0; i < s->fdec_num; i++

Re: [libav-devel] [PATCH] Revert "h264: Properly set coded_{width, height} when parsing H.264."

2011-08-22 Thread Måns Rullgård
Luca Barbato writes: > This reverts commit b47904d158709bdec1a9d40e83d1abadf50081dc. > > coded_{width, height} overwrites width and height in avcodec_open > --- > > I'm not sure if the avcodec_open behaviour is the expected one or not, > but seems correct according our doxy on width,height and co

Re: [libav-devel] [PATCH] configure: add --disable-binaries option.

2011-08-22 Thread Måns Rullgård
Clément Bœsch writes: > --- > configure |5 + > 1 files changed, 5 insertions(+), 0 deletions(-) > > diff --git a/configure b/configure > index 9c6ce0a..b1412bd 100755 > --- a/configure > +++ b/configure > @@ -85,6 +85,7 @@ Configuration options: >--disable-avplay disable avp

[libav-devel] [PATCH 1/9] libx264: add 'crf' private option.

2011-08-22 Thread Anton Khirnov
Deprecate corresponding global option. Ideally all x264 private options should be generated automatically, but x264 doesn't provide the API for this yet. --- libavcodec/avcodec.h |5 - libavcodec/libx264.c | 11 ++- libavcodec/options.c |2 ++ libavcodec/version.h |3 +++

[libav-devel] [PATCH 2/9] libx264: add 'cqp' private option.

2011-08-22 Thread Anton Khirnov
Deprecate corresponding global option. --- libavcodec/avcodec.h |5 +++-- libavcodec/libx264.c | 14 +++--- libavcodec/options.c |2 +- 3 files changed, 15 insertions(+), 6 deletions(-) diff --git a/libavcodec/avcodec.h b/libavcodec/avcodec.h index c3ed3c8..06c7a8e 100644 --- a/

[libav-devel] [PATCH 3/9] libx264: add 'aq_mode' private option.

2011-08-22 Thread Anton Khirnov
Deprecate corresponding global option. --- libavcodec/avcodec.h |4 +++- libavcodec/libx264.c | 15 ++- libavcodec/options.c |4 +++- 3 files changed, 20 insertions(+), 3 deletions(-) diff --git a/libavcodec/avcodec.h b/libavcodec/avcodec.h index 06c7a8e..5dcd3d9 100644 ---

[libav-devel] [PATCH 4/9] libx264: add 'aq_strength' private option.

2011-08-22 Thread Anton Khirnov
Deprecate corresponding global option. --- libavcodec/avcodec.h |4 ++-- libavcodec/libx264.c |8 ++-- libavcodec/options.c |2 +- 3 files changed, 9 insertions(+), 5 deletions(-) diff --git a/libavcodec/avcodec.h b/libavcodec/avcodec.h index 5dcd3d9..6d28571 100644 --- a/libavcod

[libav-devel] [PATCH 6/9] libx264: add 'psy_trellis' private option.

2011-08-22 Thread Anton Khirnov
Deprecate corresponding global option. --- libavcodec/avcodec.h |4 ++-- libavcodec/libx264.c |7 ++- libavcodec/options.c |4 +--- 3 files changed, 9 insertions(+), 6 deletions(-) diff --git a/libavcodec/avcodec.h b/libavcodec/avcodec.h index 1aef04b..9919817 100644 --- a/libavco

[libav-devel] [PATCH 5/9] libx264: add 'psy_rd' private option.

2011-08-22 Thread Anton Khirnov
Deprecate corresponding global option. --- libavcodec/avcodec.h |4 ++-- libavcodec/libx264.c |8 +++- libavcodec/options.c |4 +++- 3 files changed, 12 insertions(+), 4 deletions(-) diff --git a/libavcodec/avcodec.h b/libavcodec/avcodec.h index 6d28571..1aef04b 100644 --- a/libav

[libav-devel] [PATCH 7/9] libx264: add 'rc_lookahead' private option.

2011-08-22 Thread Anton Khirnov
Deprecate corresponding global option. --- libavcodec/avcodec.h |4 ++-- libavcodec/libx264.c |8 ++-- libavcodec/options.c |2 +- 3 files changed, 9 insertions(+), 5 deletions(-) diff --git a/libavcodec/avcodec.h b/libavcodec/avcodec.h index 9919817..7b0d5b5 100644 --- a/libavcod

[libav-devel] [PATCH 8/9] libx264: add 'wpredp' private option.

2011-08-22 Thread Anton Khirnov
Deprecate corresponding global option. --- libavcodec/avcodec.h |4 ++-- libavcodec/libx264.c | 11 ++- libavcodec/options.c |4 +++- 3 files changed, 15 insertions(+), 4 deletions(-) diff --git a/libavcodec/avcodec.h b/libavcodec/avcodec.h index 7b0d5b5..1b9ab39 100644 --- a/li

[libav-devel] [PATCH 9/9] libx264: add 'crf_max' private option.

2011-08-22 Thread Anton Khirnov
Deprecate corresponding global option. --- libavcodec/avcodec.h |4 ++-- libavcodec/libx264.c |5 + libavcodec/options.c |2 ++ 3 files changed, 9 insertions(+), 2 deletions(-) diff --git a/libavcodec/avcodec.h b/libavcodec/avcodec.h index 1b9ab39..8258d8c 100644 --- a/libavcodec/

[libav-devel] [PATCH 1/2] avconv: move the avcodec_find_decoder() call to add_input_streams().

2011-08-22 Thread Anton Khirnov
This makes the code simpler to understand, though it results in an unnecessary call to avcodec_find_decoder() if the stream won't be decoded. --- avconv.c |4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/avconv.c b/avconv.c index fc0a311..3bad6e0 100644 --- a/avconv.c ++

[libav-devel] [PATCH 2/2] avconv: print the codecs names in the stream mapping.

2011-08-22 Thread Anton Khirnov
From: Nicolas George Signed-off-by: Anton Khirnov --- avconv.c |4 1 files changed, 4 insertions(+), 0 deletions(-) diff --git a/avconv.c b/avconv.c index 3bad6e0..a86fa02 100644 --- a/avconv.c +++ b/avconv.c @@ -2194,6 +2194,10 @@ static int transcode_init(OutputFile *output_files,

Re: [libav-devel] [PATCH] sws: implement MMX/SSE2/SSSE3/SSE4 versions for horizontal scaling.

2011-08-22 Thread Loren Merritt
On Sun, 21 Aug 2011, Ronald S. Bultje wrote: > hscale10to15_8_ssse3: > ... > phaddd m0, m1 > phaddd m4, m5 > phaddd m0, m4 If you load with movq/movhps and rearrange filter[] accordingly, then 2 of those can become paddd. 13% faster on conroe, 3% faster on penryn, slower on sandybridge. (I did

Re: [libav-devel] [PATCH] hyscale_fast_MMX2 segfaults on GNU/Linux due to failure to detect MAP_ANONYMOUS

2011-08-22 Thread Reinhard Tartler
On Mon, Aug 22, 2011 at 11:34:41 (CEST), Luca Barbato wrote: > On 8/22/11 10:46 AM, Colin Watson wrote: > >> diff --git a/configure b/configure >> index 9c6ce0a..aba24c6 100755 >> --- a/configure >> +++ b/configure >> @@ -2464,7 +2464,7 @@ case $target_os in >> add_cppflags -U__STRICT_AN

Re: [libav-devel] [PATCH] hyscale_fast_MMX2 segfaults on GNU/Linux due to failure to detect MAP_ANONYMOUS

2011-08-22 Thread Måns Rullgård
Luca Barbato writes: > On 8/22/11 10:46 AM, Colin Watson wrote: > >> diff --git a/configure b/configure >> index 9c6ce0a..aba24c6 100755 >> --- a/configure >> +++ b/configure >> @@ -2464,7 +2464,7 @@ case $target_os in >> add_cppflags -U__STRICT_ANSI__ >> ;; >> linux) >>

Re: [libav-devel] [PATCH] hyscale_fast_MMX2 segfaults on GNU/Linux due to failure to detect MAP_ANONYMOUS

2011-08-22 Thread Colin Watson
On Mon, Aug 22, 2011 at 01:48:58PM +0200, Reinhard Tartler wrote: > Shouldn't BSD_SOURCE be added to other platforms, such as kfreebsd and > hurd, as well then? They all use glibc after all. You already enabled _BSD_SOURCE on kFreeBSD (commit c1f54478050279663217fe5ffa4bc90f60e7030d), but you're p

Re: [libav-devel] [PATCH] hyscale_fast_MMX2 segfaults on GNU/Linux due to failure to detect MAP_ANONYMOUS

2011-08-22 Thread Luca Barbato
On 8/22/11 1:53 PM, Måns Rullgård wrote: Luca Barbato writes: On 8/22/11 10:46 AM, Colin Watson wrote: diff --git a/configure b/configure index 9c6ce0a..aba24c6 100755 --- a/configure +++ b/configure @@ -2464,7 +2464,7 @@ case $target_os in add_cppflags -U__STRICT_ANSI__

Re: [libav-devel] [PATCH] hyscale_fast_MMX2 segfaults on GNU/Linux due to failure to detect MAP_ANONYMOUS

2011-08-22 Thread Colin Watson
On Mon, Aug 22, 2011 at 12:53:12PM +0100, Måns Rullgård wrote: > Defining _BSD_SOURCE on glibc has all sorts of nasty effects, including > replacing some standard functions with historic BSD variants of the same > names. Just don't. Can we go back to defining it (or _SVID_SOURCE, which IIRC is no

Re: [libav-devel] [PATCH] Revert "h264: Properly set coded_{width, height} when parsing H.264."

2011-08-22 Thread Luca Barbato
On 8/22/11 11:54 AM, Måns Rullgård wrote: But that *is* the coded width/height. Using those as display width/height is broken. then we have a documentation hole, which field contains the correct values? lu ___ libav-devel mailing list libav-devel@

Re: [libav-devel] [PATCH] Revert "h264: Properly set coded_{width, height} when parsing H.264."

2011-08-22 Thread Måns Rullgård
Luca Barbato writes: > On 8/22/11 11:54 AM, Måns Rullgård wrote: >> But that *is* the coded width/height. Using those as display >> width/height is broken. > > then we have a documentation hole, which field contains the correct values? Both are correct but for different things. coded_{width,he

Re: [libav-devel] [RFC][PATCH] H/W Accelerated H.264 Decoding on Android

2011-08-22 Thread Martin Storsjö
On Sun, 21 Aug 2011, Måns Rullgård wrote: > Martin Storsjö writes: > > > On Sat, 20 Aug 2011, Mohamed Naufal wrote: > > > >> The attached build.sh can be used to build the code after pointing > >> $ANDROID_SOURCE to the android sources and $ANDROID_LIBS to the libs > >> from /system/lib from dev

Re: [libav-devel] [PATCH 1/3] WavPack decoder: implement flush function

2011-08-22 Thread Uoti Urpala
On Mon, 2011-08-22 at 11:43 +0200, Kostya wrote: > On Sun, Aug 21, 2011 at 11:37:42PM +0300, Uoti Urpala wrote: > > On Sat, 2011-08-20 at 18:14 +0200, Kostya Shishkov wrote: > > > +static void wavpack_decode_flush(AVCodecContext *avctx) > > > +{ > > > +WavpackContext *s = avctx->priv_data; > >

Re: [libav-devel] [PATCH] Revert "h264: Properly set coded_{width, height} when parsing H.264."

2011-08-22 Thread Tomas Härdin
Måns Rullgård skrev 2011-08-22 16:04: Luca Barbato writes: On 8/22/11 11:54 AM, Måns Rullgård wrote: But that *is* the coded width/height. Using those as display width/height is broken. then we have a documentation hole, which field contains the correct values? Both are correct but for d

Re: [libav-devel] [PATCH] hyscale_fast_MMX2 segfaults on GNU/Linux due to failure to detect MAP_ANONYMOUS

2011-08-22 Thread Ronald S. Bultje
Hi, On Mon, Aug 22, 2011 at 1:46 AM, Colin Watson wrote: > This is because the region of memory where SwsContext.lumMmx2FilterCode > is stored is not marked executable, which is because sws_init_context is > falling back to plain av_malloc So there's several bugs here. First, the av_malloc() cod

Re: [libav-devel] [PATCH] Revert "h264: Properly set coded_{width, height} when parsing H.264."

2011-08-22 Thread Måns Rullgård
Tomas Härdin writes: > Måns Rullgård skrev 2011-08-22 16:04: >> Luca Barbato writes: >> >>> On 8/22/11 11:54 AM, Måns Rullgård wrote: But that *is* the coded width/height. Using those as display width/height is broken. >>> >>> then we have a documentation hole, which field contains th

Re: [libav-devel] [PATCH] hyscale_fast_MMX2 segfaults on GNU/Linux due to failure to detect MAP_ANONYMOUS

2011-08-22 Thread Ronald S. Bultje
Hi, On Mon, Aug 22, 2011 at 9:05 AM, Ronald S. Bultje wrote: > The configure bug which causes av_malloc() to not be found should also > be fixed, but I'd like Mans/Diego to look at that. Gr, I should use this undo feature in gmail - I meant av_malloc() counterpart to not be found. Ronald __

Re: [libav-devel] [PATCH] hyscale_fast_MMX2 segfaults on GNU/Linux due to failure to detect MAP_ANONYMOUS

2011-08-22 Thread Måns Rullgård
"Ronald S. Bultje" writes: > Hi, > > On Mon, Aug 22, 2011 at 9:05 AM, Ronald S. Bultje wrote: >> The configure bug which causes av_malloc() to not be found should also >> be fixed, but I'd like Mans/Diego to look at that. > > Gr, I should use this undo feature in gmail - I meant av_malloc() > co

Re: [libav-devel] [PATCH] hyscale_fast_MMX2 segfaults on GNU/Linux due to failure to detect MAP_ANONYMOUS

2011-08-22 Thread Diego Biurrun
On Mon, Aug 22, 2011 at 01:08:47PM +0100, Colin Watson wrote: > On Mon, Aug 22, 2011 at 12:53:12PM +0100, Måns Rullgård wrote: > > Defining _BSD_SOURCE on glibc has all sorts of nasty effects, including > > replacing some standard functions with historic BSD variants of the same > > names. Just do

Re: [libav-devel] [PATCH] sws: implement MMX/SSE2/SSSE3/SSE4 versions for horizontal scaling.

2011-08-22 Thread Ronald S. Bultje
Hi, On Mon, Aug 22, 2011 at 4:17 AM, Loren Merritt wrote: > On Sun, 21 Aug 2011, Ronald S. Bultje wrote: > >> hscale10to15_8_ssse3: >> ... >> phaddd  m0, m1 >> phaddd  m4, m5 >> phaddd  m0, m4 > > If you load with movq/movhps and rearrange filter[] accordingly, then 2 of > those can become paddd.

[libav-devel] [PATCH] ac3enc: remove outdated TODO comment for apply_channel_coupling()

2011-08-22 Thread Justin Ruggles
--- libavcodec/ac3enc_template.c |5 - 1 files changed, 0 insertions(+), 5 deletions(-) diff --git a/libavcodec/ac3enc_template.c b/libavcodec/ac3enc_template.c index 943a55a..dd759a7 100644 --- a/libavcodec/ac3enc_template.c +++ b/libavcodec/ac3enc_template.c @@ -132,11 +132,6 @@ static

Re: [libav-devel] [PATCH] ac3enc: remove outdated TODO comment for apply_channel_coupling()

2011-08-22 Thread Måns Rullgård
Justin Ruggles writes: > --- > libavcodec/ac3enc_template.c |5 - > 1 files changed, 0 insertions(+), 5 deletions(-) > > diff --git a/libavcodec/ac3enc_template.c b/libavcodec/ac3enc_template.c > index 943a55a..dd759a7 100644 > --- a/libavcodec/ac3enc_template.c > +++ b/libavcodec/ac3enc

Re: [libav-devel] [PATCH] hyscale_fast_MMX2 segfaults on GNU/Linux due to failure to detect MAP_ANONYMOUS

2011-08-22 Thread Uoti Urpala
On Mon, 2011-08-22 at 12:53 +0100, Måns Rullgård wrote: > Defining _BSD_SOURCE on glibc has all sorts of nasty effects, including > replacing some standard functions with historic BSD variants of the same > names. Just don't. This is inaccurate. _BSD_SOURCE is enabled _by default_ in glibc, and t

Re: [libav-devel] [PATCH 1/9] libx264: add 'crf' private option.

2011-08-22 Thread Alex Converse
On Mon, Aug 22, 2011 at 3:21 AM, Anton Khirnov wrote: > Deprecate corresponding global option. > > Ideally all x264 private options should be generated automatically, but > x264 doesn't provide the API for this yet. > --- >  libavcodec/avcodec.h |    5 - >  libavcodec/libx264.c |   11

Re: [libav-devel] [PATCH] Windows Media Image decoder (WMVP/WVP2)

2011-08-22 Thread compn
Kostya Shishkov writes: > > On 17 August 2011 14:40, Alberto Delmás gmail.com> wrote: > > On 17/08/2011 2:08, Ronald S. Bultje wrote: > The patch looks fine by me. Any other comments? hi, please test with samples from picsearch (url lists may have 404s): http://www1.mplayerhq.hu/~compn/videos_

[libav-devel] [PATCH] avconv: use av_clip_int16 for audio clipping

2011-08-22 Thread Alex Converse
--- avconv.c |4 +--- 1 files changed, 1 insertions(+), 3 deletions(-) diff --git a/avconv.c b/avconv.c index fc0a311..0a98317 100644 --- a/avconv.c +++ b/avconv.c @@ -1638,9 +1638,7 @@ static int output_packet(InputStream *ist, int ist_index, volp = samples;

Re: [libav-devel] [PATCH] avconv: use av_clip_int16 for audio clipping

2011-08-22 Thread Ronald S. Bultje
Hi, On Mon, Aug 22, 2011 at 10:39 AM, Alex Converse wrote: > --- >  avconv.c |    4 +--- >  1 files changed, 1 insertions(+), 3 deletions(-) > > diff --git a/avconv.c b/avconv.c > index fc0a311..0a98317 100644 > --- a/avconv.c > +++ b/avconv.c > @@ -1638,9 +1638,7 @@ static int output_packet(Inpu

Re: [libav-devel] [PATCH] avconv: use av_clip_int16 for audio clipping

2011-08-22 Thread Alex Converse
On Mon, Aug 22, 2011 at 10:48 AM, Ronald S. Bultje wrote: > Hi, > > On Mon, Aug 22, 2011 at 10:39 AM, Alex Converse > wrote: >> --- >>  avconv.c |    4 +--- >>  1 files changed, 1 insertions(+), 3 deletions(-) >> >> diff --git a/avconv.c b/avconv.c >> index fc0a311..0a98317 100644 >> --- a/avcon

Re: [libav-devel] [PATCH] avconv: use av_clip_int16 for audio clipping

2011-08-22 Thread Anton Khirnov
On Mon, 22 Aug 2011 10:39:30 -0700, Alex Converse wrote: > --- > avconv.c |4 +--- > 1 files changed, 1 insertions(+), 3 deletions(-) > > diff --git a/avconv.c b/avconv.c > index fc0a311..0a98317 100644 > --- a/avconv.c > +++ b/avconv.c > @@ -1638,9 +1638,7 @@ static int output_packet(Inpu

Re: [libav-devel] [PATCH] Revert "h264: Properly set coded_{width, height} when parsing H.264."

2011-08-22 Thread Luca Barbato
On 8/22/11 4:04 PM, Måns Rullgård wrote: Luca Barbato writes: On 8/22/11 11:54 AM, Måns Rullgård wrote: But that *is* the coded width/height. Using those as display width/height is broken. then we have a documentation hole, which field contains the correct values? Both are correct but fo

Re: [libav-devel] [PATCH] Revert "h264: Properly set coded_{width, height} when parsing H.264."

2011-08-22 Thread Måns Rullgård
Luca Barbato writes: > On 8/22/11 4:04 PM, Måns Rullgård wrote: >> Luca Barbato writes: >> >>> On 8/22/11 11:54 AM, Måns Rullgård wrote: But that *is* the coded width/height. Using those as display width/height is broken. >>> >>> then we have a documentation hole, which field contains

Re: [libav-devel] [PATCH] Revert "h264: Properly set coded_{width, height} when parsing H.264."

2011-08-22 Thread Luca Barbato
On 8/22/11 9:05 PM, Måns Rullgård wrote: Luca Barbato writes: On 8/22/11 4:04 PM, Måns Rullgård wrote: Luca Barbato writes: On 8/22/11 11:54 AM, Måns Rullgård wrote: But that *is* the coded width/height. Using those as display width/height is broken. then we have a documentation hole,

Re: [libav-devel] [PATCH] sws: implement MMX/SSE2/SSSE3/SSE4 versions for horizontal scaling.

2011-08-22 Thread Loren Merritt
On Mon, 22 Aug 2011, Ronald S. Bultje wrote: > On Mon, Aug 22, 2011 at 4:17 AM, Loren Merritt > wrote: >> On Sun, 21 Aug 2011, Ronald S. Bultje wrote: > >>> hscale10to15_X8_ssse3: >>> ... >>> pshufd �m4, m4, 11011000b >>> movhlps m0, m4 >>> paddd � m0, m4 >> >> phaddd is slightly faster than this

Re: [libav-devel] [PATCH] ac3enc: scale floating-point coupling channel coefficients in scale_coefficients() rather than in apply_channel_coupling()

2011-08-22 Thread Justin Ruggles
On 08/10/2011 10:51 AM, Justin Ruggles wrote: > --- > libavcodec/ac3enc_float.c|7 --- > libavcodec/ac3enc_template.c |4 > 2 files changed, 4 insertions(+), 7 deletions(-) > > diff --git a/libavcodec/ac3enc_float.c b/libavcodec/ac3enc_float.c > index 8e74aaf..32ec558 100644

[libav-devel] [PATCH] lavf utils: Fix bad indentation.

2011-08-22 Thread Alex Converse
--- libavformat/utils.c | 67 ++- 1 files changed, 34 insertions(+), 33 deletions(-) diff --git a/libavformat/utils.c b/libavformat/utils.c index 6e3cb2f..6077be9 100644 --- a/libavformat/utils.c +++ b/libavformat/utils.c @@ -587,7 +587,7 @@ stati

Re: [libav-devel] [PATCH] lavf utils: Fix bad indentation.

2011-08-22 Thread Anton Khirnov
On Mon, 22 Aug 2011 18:48:18 -0700, Alex Converse wrote: > --- > libavformat/utils.c | 67 > ++- > 1 files changed, 34 insertions(+), 33 deletions(-) > Ok. -- Anton Khirnov ___ libav-devel mailing