Mercurial > libavcodec.hg
graph
-
don't mark the delayed samples for upmixing if they haven't been downmixed libavcodec2008-08-13, by lorenm
-
oops, non-normalized downmix to mono contaminated add_bias for non-simd float-to-int. libavcodec2008-08-13, by lorenm
-
mlp: Split common code from parser and decoder to be used by encoder. libavcodec2008-08-13, by ramiro
-
mlpdec: Put some doxy comments to the right of vars instead of interleaved. libavcodec2008-08-13, by ramiro
-
mlpdec: Split channel parameters from context into their own struct. libavcodec2008-08-13, by ramiro
-
mlpdec: Split filter parameters from context into their own struct. libavcodec2008-08-12, by ramiro
-
Fix CODEC_ID_PCM_U8 decoder output size calculation to support odd-number of samples. libavcodec2008-08-12, by pross
-
Apply PCM ENCODE/DECODE() macros to the S/U,8/24/32,LE/BE PCM codecs. libavcodec2008-08-11, by pross
-
The deblock filter does not need all the intra availability stuff so do libavcodec2008-08-11, by michael
-
Bump minor version as av_log_missing_feature() was added to public API in libavcodec2008-08-10, by superdump
-
Add a generic function to lavc to log messages about missing features. libavcodec2008-08-10, by superdump
-
R and B components are stored as a differences to G component in Fraps v5. libavcodec2008-08-10, by kostya
-
Mask bits of reference indexes properly to avoid negative numbers entangling libavcodec2008-08-10, by michael
-
Remove a few more lines of unneeded code in fill_caches() for MBAFF. libavcodec2008-08-10, by michael
-
Use the correct reference tables for interlaced MBAFF MBs in the loop filter. libavcodec2008-08-10, by michael
-
Do not execute the part of fill_caches() for the loopfilter that overwrites libavcodec2008-08-10, by michael
-
Remove more code that has become useless after the pairless MBAFF loop libavcodec2008-08-09, by michael
-
Sync already committed code with that in SoC and commit more OKed hunks of code libavcodec2008-08-09, by superdump
-
Simplify PCM codec; change 'n' in pcm_decode_frame() to equal "total number of samples". libavcodec2008-08-07, by pross
-
Prevent DAUD PCM encoder from fetching values outside of ff_reverse[] array bounds when input sample values are < 0. libavcodec2008-08-07, by pross
-
Simplify eval_refl(): do not store a buffer value in a var when the buffer could be used directly libavcodec2008-08-06, by vitor
-
Simplify eval_refl(): return directly when needed instead of storing the return value in a variable libavcodec2008-08-06, by vitor
-
Flip (by making buf[i] -> buf[size-i-1]) two buffers: {sp,gain}_block. This libavcodec2008-08-06, by vitor
-
Move shared tables to aactab.c and add declarations to aactab.h. Also sync with libavcodec2008-08-05, by superdump
-
AAC definitions and structures that have been OKed from the SoC AAC decoder libavcodec2008-08-05, by superdump
-
cosmetics: change function name and comments to refer to block decoding libavcodec2008-08-05, by jbr
-
Use frame_num and reference instead of poc for matching frames for direct libavcodec2008-08-05, by michael
-
The code under FRAME_MBAFF for temporal direct mode MBs is needed for PAFF as well. libavcodec2008-08-04, by michael
-
Simplify PCM codec; replace switch() statements with av_get_bits_per_sample(). libavcodec2008-08-04, by pross
-
Simplify PCM codec; use sample_fmts field to set the avctx->sample_fmt field. libavcodec2008-08-04, by pross
-
Make avcodec_string() and av_get_bits_per_sample() report the sample size for CODEC_ID_PCM_ZORK libavcodec2008-08-04, by pross
-
Use the correct collocated field in pred_direct_motion() when it differs in parity. libavcodec2008-08-04, by michael
-
Read bitstream parameters for E-AC-3 streams before returning an error. libavcodec2008-08-03, by jbr
-
Hardcode the table for ungrouping 3 values in 5 bits. It will be reused by libavcodec2008-08-03, by jbr
-
Remove useless mb_field_decoding_flag setting code that was at the wrong spot. libavcodec2008-08-03, by michael
-
Add graceful error handling to avcodec_get_pix_fmt_name() and avcodec_get_pix_fmt(). libavcodec2008-08-03, by pross
-
Picture.ref_count/ref_poc have to be stored per field (actually also per libavcodec2008-08-02, by michael
-
do not fail on qscale==0 if error resilience is high, fix broken quicktime h261, lotr.mov libavcodec2008-08-02, by bcoudurier
-
Mark add_png_paeth_prediction_* functions which are only used within this file libavcodec2008-08-02, by diego
-
Add sample format support functions: avcodec_get_sample_fmt_name(), avcodec_get_sample_fmt(), avcodec_sample_fmt_string() libavcodec2008-07-31, by pross
-
Modify all codecs to report their supported input and output sample format(s). libavcodec2008-07-31, by pross
-
increment minor version for commit r14412 (add sample_fmts infrastructure) libavcodec2008-07-28, by pross
-
Change the way the input is passed to do_hybrid_filter(). Before, in[0] was libavcodec2008-07-28, by vitor
-
Remove RA288Context.output buffer. This buffer is just RA288Context.sb libavcodec2008-07-28, by vitor
-
Remove the history buffer from the context. It can easily be evaluated libavcodec2008-07-27, by vitor
-
Rename two context buffers: pr{1,2} -> {sp,gain}_lpc. Also add a few doxy libavcodec2008-07-27, by vitor
-
Remove st1 and st2 temporary buffers in backward_filter() and use instead libavcodec2008-07-27, by vitor
-
And.... Fix another spec reference to be more specific and correct. libavcodec2008-07-26, by heydowns
-
Remove st1 and st2 variables from context, since they could be just local vars libavcodec2008-07-26, by vitor
-
Rename st{1,2}{a,b} context variables to more meaningful names: {sp,gain}_{rec,hist} libavcodec2008-07-26, by vitor
-
Move colmult() function to the beginning of file to group DSP-related functions. libavcodec2008-07-26, by vitor
-
Give the context structure of ra288 a better name: s/Real288_internal/RA288Context/ libavcodec2008-07-26, by vitor
-
add sample_fmts infrastructure: AVCodec->sample_fmts and SAMPLE_FMT_NB enum. libavcodec2008-07-26, by pross
-
add CODEC_ID_PCM_F32BE (32-bit floating point PCM big endian decoder) libavcodec2008-07-26, by pross
-
Add a new -debug option for tracing calls to the default get/release_buffer functions. libavcodec2008-07-26, by astrange
-
Remove another stupidity, long_ref==0 check 4 lines after assert(long_ref==0). libavcodec2008-07-25, by michael
-
Rewrite fill_default_ref_list(), the old code was obfuscated beyond libavcodec2008-07-25, by michael
-
Make remove_short() match remove_long() in that it calls unreference_pic(). libavcodec2008-07-25, by michael
-
Merge oddly duplicated remove_long/remove_long_at_index() function. libavcodec2008-07-25, by michael
-
Remove another of these obfuscated special cases for field pictures libavcodec2008-07-25, by michael
-
Make sure mmco index is 0 (instead of uninitialized) in all error returns. libavcodec2008-07-25, by michael
-
cosmetics: Fix two common typos: wont --> will not, lets --> let us. libavcodec2008-07-24, by diego
-
Rename update() function to backward_filter() and add a doxy comment libavcodec2008-07-24, by vitor
-
Follow FFmpeg convention of returning negative values on error in eval_lpc_coeffs() libavcodec2008-07-24, by vitor
-
Remove truncated support, use an AVParser if you used that, it is the same. libavcodec2008-07-23, by michael
-
Reduce the loglevel on a log message in the Nellymoser decoder. Related to Roundup 447. libavcodec2008-07-23, by banan
-
qscale has a range of 0..51 we thus do not need a 256 entry table and neither need libavcodec2008-07-22, by michael
-
Setting chroma_qp to 0 for PCM blocks is really an interesting minor libavcodec2008-07-22, by michael
-
Correct b_quant offset comment in avcodec.h, it is the description for libavcodec2008-07-21, by diego
-
Use slice_type_nos instead of slice_type where it makes no difference. libavcodec2008-07-21, by michael
-
cosmetics: Make libavcodec/ppc/dsputil_altivec.c conform to style guidelines. libavcodec2008-07-20, by diego
-
cosmetics: Reformat PPC code in libavcodec according to style guidelines. libavcodec2008-07-20, by diego
-
read 'coupling in use' parameter from bitstream into decoder context first, libavcodec2008-07-19, by jbr
-
Prevent the qdm2 code from overreading/overflowing. Fixes Coverity ID 112 run 2 libavcodec2008-07-19, by banan
-
Take the brain amputated spec literally if the user asks for it (-strict 1). libavcodec2008-07-19, by michael
-
Fix for possible null pointer dereferencing, closes Coverity report 68 run 2. libavcodec2008-07-19, by banan
-
Make the automatic has_b_frames increasing code increase it up to the libavcodec2008-07-19, by michael
-
cosmetic: use hex value instead of decimal to show relation to 0x7FFFFF libavcodec2008-07-19, by jbr
-
Remove delayed_output_pic, I do not understand what this variable was good for. libavcodec2008-07-19, by michael
-
Make the ugly hack which uses an unused entry in the internal buffer libavcodec2008-07-19, by michael
-
Make frames non reference by default, so they are disposed of automatically libavcodec2008-07-18, by michael
-
100l, someone used FLT_MIN where -FLT_MAX was meant at a few places in the libavcodec2008-07-17, by michael
-
The funny memcpyin svq3 generally has src & dst overlapping, so it libavcodec2008-07-16, by michael
-
float_to_int16_interleave: change src to an array of pointers instead of assuming it's contiguous. libavcodec2008-07-16, by lorenm
-
Move the size of the H264Context delayed_pic array into a #define. libavcodec2008-07-15, by astrange
-
strdup() the default value for rc_eq in AVCodec when setting it in libavcodec2008-07-13, by stefano
-
Fix the logic to access the location of a string to free when setting libavcodec2008-07-13, by stefano
-
check that csize in ff_lzw_decode_init is < LZW_MAXBITS, <= is not enough and libavcodec2008-07-13, by reimar
-
mlpdec: Check for bits left before each read of End-of-Stream indicator and libavcodec2008-07-13, by ramiro
-
bitstream: move put_sbits() from flacenc.c to bitstream.h and use it libavcodec2008-07-13, by ramiro
-
Fix MS ADPCM de- and encoding: first and second sample are swapped. libavcodec2008-07-13, by reimar
-
Fix pts handling when encoding with libschroedinger, closes issue 453. libavcodec2008-07-12, by diego
-
100l, fix MS ADPCM decoding for e.g. http://samples.mplayerhq.hu/mov/qtaudio/surge-2-16-L-ms02.mov libavcodec2008-07-12, by reimar
-
Change MS ADPCM table so they fit into int8_t and change array type. libavcodec2008-07-11, by reimar
-
Move #ifdef CONFIG_DVVIDEO_ENCODER up to cover all functions used for encoding. libavcodec2008-07-11, by diego
-
increment minor version for commit r14110 (Electronic Arts CMV decoder) libavcodec2008-07-09, by pross
-
Remove wrong casts from vector declarations, this would cause errors when libavcodec2008-07-08, by diego
-
Add several vector functions used by Monkey's Audio decoder to dsputil libavcodec2008-07-06, by kostya
-
Create a function for float dot product instead of duplicating all over the file libavcodec2008-07-05, by vitor
-
Add a note to remind people that new PCM/ADPCM formats need to be added to libavcodec2008-07-05, by diego
-
Write for loops in a more standard way. In my opinion, they are much more readable now. libavcodec2008-07-04, by vitor
-
Reorder the if/else for residual cats to match gcc's branch prediction. libavcodec2008-07-02, by astrange
-
Clone decode_cabac_residual() for DC residuals, to get rid of a bunch of branches in the main loop. libavcodec2008-07-02, by astrange
-
Make ff_mlp_read_major_sync() take a GetBitContext instead of buffers. libavcodec2008-07-01, by ramiro
-
Clarify/simplify documentation for the default_val field in AVOption. libavcodec2008-06-30, by stefano
-
gain code, gain pitch and pitch delay decoding for ACELP based codecs libavcodec2008-06-30, by voroshil
-
Make ff_acelp_lp_synthesis_filter() receives a pointer to the actual filter coefficients and not the pointer minus one libavcodec2008-06-29, by vitor
-
Don't set mm_flags in fft-test, since it doesn't do anything anyway. libavcodec2008-06-25, by astrange
-
Make it a little easier to spot that the code is not dealing only with libavcodec2008-06-25, by ramiro
-
Define mm_flags/support to be 0 on architectures where they don't exist. libavcodec2008-06-24, by astrange