- 27 Jul, 2015 1 commit
-
-
Vittorio Giovara authored
Express bitfields more simply. Signed-off-by: Vittorio Giovara <vittorio.giovara@gmail.com>
-
- 14 Feb, 2015 1 commit
-
-
Diego Biurrun authored
-
- 22 Nov, 2014 1 commit
-
-
Michael Niedermayer authored
Found-by: Reimar Döffinger <Reimar.Doeffinger@gmx.de> Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
-
- 21 Nov, 2014 2 commits
-
-
Michael Niedermayer authored
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
-
Michael Niedermayer authored
Fixes Ticket1873 Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
-
- 30 May, 2014 1 commit
-
-
Carl Eugen Hoyos authored
Fixes a regression since ef48ac65 when decoding speex in f4v, reported by irc user massdos.
-
- 14 Apr, 2014 1 commit
-
-
Carl Eugen Hoyos authored
The bitrate of the first frame is used as bitrate for the speex stream.
-
- 03 Oct, 2013 1 commit
-
-
Diego Biurrun authored
-
- 21 Jul, 2013 1 commit
-
-
Justin Ruggles authored
-
- 23 Mar, 2013 1 commit
-
-
Piotr Bandurski authored
Fixes "quality 10" mode from Ticket1873 Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
-
- 13 Mar, 2013 1 commit
-
-
Clément Bœsch authored
Coccinelle profile used: @@ expression r, ctx, f, loglevel, str, flags; @@ -if ((r = ff_get_buffer(ctx, f, flags)) < 0) { - av_log(ctx, loglevel, str); - return r; -} +if ((r = ff_get_buffer(ctx, f, flags)) < 0) + return r; @@ expression r, ctx, f, loglevel, str; @@ -if ((r = ff_reget_buffer(ctx, f)) < 0) { - av_log(ctx, loglevel, str); - return r; -} +if ((r = ff_reget_buffer(ctx, f)) < 0) + return r; @@ expression r, ctx, f, loglevel, str, flags; @@ -if ((r = ff_thread_get_buffer(ctx, f, flags)) < 0) { - av_log(ctx, loglevel, str); - return r; -} +if ((r = ff_thread_get_buffer(ctx, f, flags)) < 0) + return r; ...along with some manual patches for the remaining ones.
-
- 08 Mar, 2013 1 commit
-
-
Anton Khirnov authored
-
- 12 Feb, 2013 1 commit
-
-
Justin Ruggles authored
-
- 05 Jan, 2013 1 commit
-
-
Michael Niedermayer authored
Fixes Ticket2096 Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
-
- 04 Dec, 2012 1 commit
-
-
Anton Khirnov authored
It will be useful in the upcoming transition to refcounted AVFrames.
-
- 03 Dec, 2012 1 commit
-
-
Reimar Döffinger authored
This was broken by 3b061c5e Fixes trac issue #1974. Signed-off-by: Reimar Döffinger <Reimar.Doeffinger@gmx.de>
-
- 11 Nov, 2012 1 commit
-
-
Justin Ruggles authored
Also reorder some other #include when applicable.
-
- 03 Oct, 2012 7 commits
-
-
Justin Ruggles authored
This will happen when the extradata is not a valid Speex header.
-
Justin Ruggles authored
When initialized as stereo, libspeex can decode either mono or stereo packets and will output stereo.
-
Justin Ruggles authored
-
Justin Ruggles authored
-
Justin Ruggles authored
-
Justin Ruggles authored
-
Justin Ruggles authored
If there is no extradata and the sample rate given by the user is not valid, decode as ultra-wideband.
-
- 01 Sep, 2012 1 commit
-
-
Piotr Bandurski authored
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
-
- 15 Aug, 2012 1 commit
-
-
Martin Storsjö authored
Signed-off-by: Martin Storsjö <martin@martin.st>
-
- 07 Aug, 2012 1 commit
-
-
Anton Khirnov authored
-
- 06 Apr, 2012 1 commit
-
-
Martin Storsjö authored
Also break some long lines, remove codec function placeholder comments and add spaces in sample/pixel format lists. Signed-off-by: Martin Storsjö <martin@martin.st>
-
- 30 Mar, 2012 1 commit
-
-
Justin Ruggles authored
This fixes speex decoding, which was broken in 85469f1c.
-
- 21 Mar, 2012 1 commit
-
-
Carl Eugen Hoyos authored
This parly reverts 85469f. Fixes ticket #1091.
-
- 05 Mar, 2012 1 commit
-
-
Justin Ruggles authored
It is not necessary
-
- 02 Dec, 2011 1 commit
-
-
Justin Ruggles authored
Deprecate avcodec_decode_audio3(). Implement audio support in avcodec_default_get_buffer(). Implement the new audio decoder API in all audio decoders.
-
- 21 Oct, 2011 4 commits
-
-
Justin Ruggles authored
-
Justin Ruggles authored
-
Justin Ruggles authored
-
Justin Ruggles authored
This allows for knowing the output size before decoding even when there is no header (e.g. FLV). Otherwise we would have to do a preliminary full frame decode to determine the number of frames-per-packet.
-
- 29 Jul, 2011 1 commit
-
-
Anton Khirnov authored
It's more readable and less prone to breakage.
-
- 15 Jul, 2011 1 commit
-
-
Diego Biurrun authored
libavcodec/libspeexdec.c:108: warning: passing argument 2 of ‘speex_bits_read_from’ discards qualifiers from pointer target type /usr/include/speex/speex_bits.h:80: note: expected ‘char *’ but argument is of type ‘const uint8_t *’
-
- 19 Mar, 2011 1 commit
-
-
Mans Rullgard authored
Signed-off-by: Mans Rullgard <mans@mansr.com>
-
- 28 Jan, 2011 1 commit
-
-
Diego Elio Pettenò authored
None of these symbols should be accessed directly, so declare them as hidden. Signed-off-by: Mans Rullgard <mans@mansr.com> (cherry picked from commit d36beb3f)
-