- 25 Mar, 2013 1 commit
-
-
James Almer authored
Signed-off-by:
James Almer <jamrial@gmail.com> Reviewed-by:
Paul B Mahol <onemda@gmail.com> Signed-off-by:
Michael Niedermayer <michaelni@gmx.at>
-
- 13 Mar, 2013 2 commits
-
-
Diego Biurrun authored
-
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
-
- 02 Mar, 2013 1 commit
-
-
James Almer authored
Fixes ticket #2266 Signed-off-by:
James Almer <jamrial@gmail.com>
-
- 12 Feb, 2013 1 commit
-
-
Justin Ruggles authored
-
- 07 Feb, 2013 1 commit
-
-
Tim Walker authored
This is unnecessary, as ff_flac_set_channel_layout can handle any number of channels.
-
- 06 Feb, 2013 1 commit
-
-
Tim Walker authored
This is unnecessary, as ff_flac_set_channel_layout can handle any number of channels. Signed-off-by:
Anton Khirnov <anton@khirnov.net>
-
- 04 Feb, 2013 1 commit
-
-
Michael Niedermayer authored
Signed-off-by:
Michael Niedermayer <michaelni@gmx.at>
-
- 02 Feb, 2013 1 commit
-
-
Michael Niedermayer authored
This prevents warning messages on chained oggs with some demuxers Signed-off-by:
Michael Niedermayer <michaelni@gmx.at>
-
- 22 Dec, 2012 1 commit
-
-
Justin Ruggles authored
Fixes Bug 402
-
- 04 Dec, 2012 1 commit
-
-
Anton Khirnov authored
It will be useful in the upcoming transition to refcounted AVFrames.
-
- 11 Nov, 2012 1 commit
-
-
Justin Ruggles authored
Also reorder some other #include when applicable.
-
- 01 Nov, 2012 3 commits
-
-
Justin Ruggles authored
-
Justin Ruggles authored
Although the libFLAC decoder cannot handle such a change, it is allowed by the spec and could potentially occur with live streams.
-
Justin Ruggles authored
Also, return an error on allocation failure.
-
- 23 Oct, 2012 1 commit
-
-
Diego Biurrun authored
-
- 15 Oct, 2012 1 commit
-
-
Paul B Mahol authored
Signed-off-by:
Paul B Mahol <onemda@gmail.com>
-
- 12 Oct, 2012 1 commit
-
-
Diego Biurrun authored
-
- 21 Aug, 2012 2 commits
-
-
Mans Rullgard authored
Pass pointer to sample buffer instead of channel number to various functions called from decode_subframe(). Also simplify a few expressions within this function.
-
Mans Rullgard authored
-
- 07 Aug, 2012 1 commit
-
-
Anton Khirnov authored
-
- 02 Aug, 2012 1 commit
-
-
Michael Niedermayer authored
Signed-off-by:
Michael Niedermayer <michaelni@gmx.at>
-
- 19 Jul, 2012 1 commit
-
-
Mans Rullgard authored
Reversing the lpc coefficient order simplifies indexing in the filter. Signed-off-by:
Mans Rullgard <mans@mansr.com>
-
- 12 Jul, 2012 1 commit
-
-
Diego Biurrun authored
This fixes a number of flac-related build dependencies.
-
- 05 Jul, 2012 1 commit
-
-
Mans Rullgard authored
Signed-off-by:
Mans Rullgard <mans@mansr.com>
-
- 04 Jul, 2012 5 commits
-
-
Mans Rullgard authored
Signed-off-by:
Mans Rullgard <mans@mansr.com>
-
Mans Rullgard authored
Signed-off-by:
Mans Rullgard <mans@mansr.com>
-
Mans Rullgard authored
-
Mans Rullgard authored
The buffers are only allocated once, although it can happen from any of a few different places, so there is no need to use realloc. Using av_malloc() ensures they are aligned suitably for SIMD optimisations. Signed-off-by:
Mans Rullgard <mans@mansr.com>
-
Mans Rullgard authored
This value does not need to be persistent across calls.
-
- 02 Jul, 2012 1 commit
-
-
Mans Rullgard authored
Signed-off-by:
Mans Rullgard <mans@mansr.com>
-
- 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>
-
- 23 Feb, 2012 1 commit
-
-
Justin Ruggles authored
Channel layouts are specified in the FLAC format description at http://flac.sourceforge.net/format.html fixes Bug 209
-
- 17 Feb, 2012 1 commit
-
-
Ronald S. Bultje authored
Found-by: Mateusz "j00ru" Jurczyk and Gynvael Coldwind CC: libav-stable@libav.org
-
- 13 Feb, 2012 1 commit
-
-
Diego Biurrun authored
Recent versions of gcc (4.4+) no longer give false positive warnings.
-
- 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.
-
- 29 Oct, 2011 1 commit
-
-
Justin Ruggles authored
-
- 20 Oct, 2011 1 commit
-
-
Anton Khirnov authored
Specifically, ff_flac_parse_streaminfo, ff_flac_is_extradata_valid and ff_flac_parse_block_header
-
- 26 Sep, 2011 1 commit
-
-
Justin Ruggles authored
Adds an additional check before reading the next block header and avoids a potential integer overflow when checking the metadata size against the remaining buffer size.
-