Mercurial > libavcodec.hg
graph
-
Remove x86/mmx.h. It is not used anymore and has been deprecated for years. libavcodec2010-07-31, by vitor
-
Combine and simplify output_subframe_fixed() and output_subframe_lpc(). libavcodec2010-07-30, by jbr
-
Combine and simplify output_subframe_constant() and output_subframe_verbatim(). libavcodec2010-07-30, by jbr
-
cosmetics: change FlacEncodeContext variable name from ctx to s in several libavcodec2010-07-30, by jbr
-
Do not need to set coded_frame->key_frame = 1 because it is already set in libavcodec2010-07-30, by jbr
-
Map rc_buffer_size to and c_initial_buffer_occupancy to their libvpx libavcodec2010-07-28, by cehoyos
-
b0rk3d FATE + black helicopters hissing -> rolling back to r24556 and sleeping libavcodec2010-07-27, by skal
-
Deprecate av_parse_video_frame_size() and av_parse_video_frame_rate() libavcodec2010-07-26, by stefano
-
Use pmaddubsw for the mbedge_filter (>=ssse3), 6-10 cycles faster. libavcodec2010-07-26, by rbultje
-
Save a register (or regsize of stackspace for x86-32) for the no-loop libavcodec2010-07-26, by rbultje
-
Use nested ifs instead of &&, which appears to not work with %ifidn (i.e. this libavcodec2010-07-26, by rbultje
-
Split pextrw macro-spaghetti into several opt-specific macros, this will make libavcodec2010-07-26, by rbultje
-
Fix r24445: Instead of needlessly initialising a variable, silence the warning. libavcodec2010-07-25, by cehoyos
-
Fix obvious bug in assignment. Somehow, the test vectors don't test this... libavcodec2010-07-25, by rbultje
-
Fix SPLATB_REG mess. Used to be a if/elseif/elseif/elseif spaghetti, so this libavcodec2010-07-24, by rbultje
-
VP8: Use vp56_rac_get_prob_branchy when the bit is only used by an if() libavcodec2010-07-23, by conrad
-
Decode DCT tokens by branching to a different code path for each branch libavcodec2010-07-23, by conrad
-
Move renormalization of the VP56 arith decoder to before decoding a bit libavcodec2010-07-23, by conrad
-
vp56's arith decoder's code_word is only 16 bits, no need for unsigned long libavcodec2010-07-23, by conrad
-
VP8: always_inline some things to force gcc to do the right thing libavcodec2010-07-23, by darkshikari
-
In h264 parser, return immediately if buf_size is 0, avoid printing libavcodec2010-07-23, by bcoudurier
-
Use pextrw for SSE4 mbedge filter result writing, speedup 5-10cycles on libavcodec2010-07-22, by rbultje
-
Eliminate a pointless memset for intra blocks in P-frames in VP8 libavcodec2010-07-22, by darkshikari
-
Make ff_inverse stay with libavutil, and optional copy it to libavcodec. libavcodec2010-07-21, by flameeyes
-
VP8 MBedge loopfilter MMX/MMX2/SSE2 functions for both luma (width=16) libavcodec2010-07-20, by rbultje
-
vp8: add do { } while(0) around XCHG() macro to avoid confusing if/else libavcodec2010-07-20, by mru
-
Revert r24339 (it causes fate failures on x86-64) - I'll figure out what's libavcodec2010-07-19, by rbultje
-
Remove FF_MM_SSE2/3 flags for CPUs where this is generally not faster than libavcodec2010-07-19, by rbultje
-
Implement chroma (width=8) inner loopfilter MMX/MMX2/SSE2 functions. libavcodec2010-07-19, by rbultje
-
Be more efficient with registers or stack memory. Saves 8/16 bytes stack libavcodec2010-07-19, by rbultje
-
Change function prototypes for width=8 inner and mbedge loopfilter functions libavcodec2010-07-19, by rbultje
-
aacenc: Adjust array offsets for the current channel before calling ff_psy_suggest_window(). libavcodec2010-07-19, by alexc
-
aacenc: Refactor apply_window_and_mdct() so it no longer takes an offset channel. libavcodec2010-07-19, by alexc
-
Revert 24270, it contained some stuff that shouldn't have been in there. libavcodec2010-07-16, by rbultje
-
Give x86 r%d registers names, this will simplify implementation of the chroma libavcodec2010-07-16, by rbultje
-
Change return statement, the REP_RET is a mistake since the else case (x86-64, libavcodec2010-07-16, by rbultje
-
vp8: Save mb border needed for intra prediction so that loop filter can run libavcodec2010-07-16, by conrad
-
Pass the composition and ancillary ID for DVB subtitles via extradata instead libavcodec2010-07-14, by reimar
-
Do not map video quantizer scale (from 1-51 to 0-63) for libvpx anymore. libavcodec2010-07-12, by cehoyos
-
Use correct length modifier for size comparison in printf expression, fixes: libavcodec2010-07-12, by diego
-
Use math constant instead of hardcoded rounded value for sqrt(0.5). libavcodec2010-07-12, by benoit
-
vc1: ff_draw_horiz_band needs a one row delay when the loop filter is active libavcodec2010-07-11, by conrad
-
Do not try to decode less than one frame of data in TrueSpeech decoder. libavcodec2010-07-11, by kostya
-
100l, change avsubtitle_free to the actually tested and working version. libavcodec2010-07-11, by reimar
-
Set pix_fmt to the correct value for the format the PGS decoder actually uses. libavcodec2010-07-11, by reimar
-
Document that and why subtitle decoders do not support direct-rendering. libavcodec2010-07-10, by reimar
-
Add back previously removed non-existing function params in doxygen comments. libavcodec2010-07-08, by diego
-
Improve variable names in imlt_window_float() and mlt_compensate_output(). libavcodec2010-07-08, by diego
-
ac3: make the value of codec_id during (E-)AC-3 parsing stay CODEC_ID_EAC3 libavcodec2010-07-07, by jbr
-
Add new decoder property max_lowres and do not init decoder if requested value is higher. libavcodec2010-07-07, by cehoyos
-
Move SSE optimized 32-point DCT to its own file. Should fix breakage with YASM libavcodec2010-07-06, by vitor
-
Add av_unused to decode_mb_skip declaration to fix the following warning: libavcodec2010-07-06, by diego
-
DCA: Occasionally a false XCH sync word can turn up after the core DTS data, libavcodec2010-07-05, by banan
-
DCA: *_bits() -> *_bits_long() where needed, half fix for broken bitstream parsing libavcodec2010-07-05, by banan
-
Simple H/V loopfilter for VP8 in MMX, MMX2 and SSE2 (yay for yasm macros). libavcodec2010-07-03, by rbultje
-
Change all occurences of "inofficial" to "unofficial" in code, comments libavcodec2010-07-03, by cehoyos
-
VP8: Move calculation of outer filter limit out of dsp functions for normal libavcodec2010-07-02, by conrad
-
Remove angular brackets from Doxygen comments; Doxygen confuses them for HTML. libavcodec2010-07-02, by diego
-
@begingroup --> @defgroup, only the latter is correct Doxygen syntax. libavcodec2010-07-02, by diego
-
Move #ifdef before zlib_decomp() up so it covers the Doxygen comments. libavcodec2010-07-02, by diego
-
Fix the signature of ff_set_min_dist_lsf() to match the implementation libavcodec2010-07-02, by diego
-
Fix Doxygen documentation of gb parameter in ff_wma_get_large_val(). libavcodec2010-07-02, by diego
-
Remove non-existing stray arguments from Doxygen function documentation. libavcodec2010-07-02, by diego
-
Fix printing of '@' symbols in Doxygen comments; the correct syntax is '@@'. libavcodec2010-07-02, by diego
-
Remove redundant and harmful explicit filename after @file Doxygen command. libavcodec2010-07-02, by diego
-
adu and mp3on4 functions are also needed by their respective float decoders libavcodec2010-07-01, by aurel
-
Fix "initialization from incompatible pointer type" warning in rv34. libavcodec2010-06-30, by benoit
-
vorbis: cosmetics, remove trailing comma for values that will never have libavcodec2010-06-29, by conrad
-
Fix some intra pred MMX functions that used MMXEXT instructions libavcodec2010-06-28, by darkshikari
-
aacenc: Start the lookahead pointer 1/4 of the way into the first short window. libavcodec2010-06-28, by alexc
-
aacenc: Fill in the estimated codebook for the final computed scalefactor in the TLS. libavcodec2010-06-28, by alexc
-
Simplify MV parsing, removes laying out 2 or 4 (16x8/8x8/8x16) MVs over all libavcodec2010-06-28, by rbultje
-
Optimize split MC, so we don't always do 4x4 blocks of 4x4pixels each, but libavcodec2010-06-28, by rbultje
-
Change type of zz_table to uint8_t to match the scantables it points to. libavcodec2010-06-27, by reimar
-
vorbisdec: Take channels into account when checking against residue overflow libavcodec2010-06-27, by conrad
-
16x16 and 8x8c x86 SIMD intra pred functions for VP8 and H.264 libavcodec2010-06-25, by darkshikari
-
Fix alphabetization of the CONFIG_HARDCODED_TABLES Makefile section. libavcodec2010-06-23, by alexc
-
Add a macro to pack 4 bytes into native byte-order so they can be written libavcodec2010-06-22, by rbultje
-
IFF PBM decoder: Add a pad byte if image width is odd <aleksi dot nurmi at gmail dot com> libavcodec2010-06-22, by pross
-
Bump micro version, add changelog entry for DTS-ES extension decoding support libavcodec2010-06-22, by mstorsjo
-
Support DTS-ES extension (XCh) in dca: add code to handle DTS-ES extension libavcodec2010-06-22, by mstorsjo
-
Support DTS-ES extension (XCh) in dca: update and add channel mapping tables for DTS-ES mappings libavcodec2010-06-22, by mstorsjo
-
Support DTS-ES extension (XCh) in dca: move original code around to allow reused by DTS-ES code libavcodec2010-06-22, by mstorsjo
-
Support DTS-ES extension (XCh) in dca: move subband_samples into context structure libavcodec2010-06-22, by mstorsjo
-
mathematics.h no longer needs config.h, so update tablegen code and libavcodec2010-06-21, by reimar
-
psdec: IPD/OPD reset is no longer needed by the context initializer. libavcodec2010-06-20, by alexc
-
Fix breakage in compilation with --disable-mpegaudio-hp introduced in libavcodec2010-06-20, by vitor
-
Factorize the mpegaudio windowing code in a function and call it by a libavcodec2010-06-19, by vitor
-
Fix svq3 watermark log uncompress on 64bit, probably fixes issue 1263 libavcodec2010-06-15, by bcoudurier
-
nellymoserdec: Increase the log level of messages when failing to decode data libavcodec2010-06-14, by mstorsjo
-
Include float.h to provide FLT_MAX define. Should fix compilation on windows. libavcodec2010-06-11, by vitor
-
Move transform declarations out of IVIBandDesc so indeo4 can use them as well. libavcodec2010-06-11, by maxim
-
Split do_output_subblock() into common code and decoder specific parts libavcodec2010-06-11, by vitor
-
Split ra144.c in common code (to be shared with the future encoder) and libavcodec2010-06-11, by vitor
-
Quant changes only once per MB so move the corresponding scale factor assignment libavcodec2010-06-10, by maxim
-
avcodec.h: Clarify AVCodecContext::pix_fmt documentation since its value may be set by the demuxer libavcodec2010-06-10, by thardin
-
Cosmetics: use and place braces correctly in if ... else statements. libavcodec2010-06-10, by benoit
-
Prepare Indeo4 (step 1): upscale indeo5 base tables by 2 and convert those into uint16_t. libavcodec2010-06-08, by maxim
-
libvpx: Set the libvpx frame dropping threshold to frame_skip_threshold libavcodec2010-06-08, by mstorsjo
-
Rewrite the SBR decoder QMF analysis filter on top of the IMDCT instead of the RDFT. libavcodec2010-06-07, by alexc
-
Optimize 1D DCT transform used in MP{1,2,3}. Makes also this function suitable libavcodec2010-06-07, by vitor
-
aac: Move an initialization macro used only by the decoder out of the header. libavcodec2010-06-05, by alexc
-
Move eval.c and eval.h from libavcodec to libavutil, and make the eval libavcodec2010-06-05, by stefano
-
Add bitexact versions of put_no_rnd_pixels8 _x2 and _y2 for vp3/theora libavcodec2010-06-04, by conrad
-
Clarify that get/release_buffer() overriding only works with CODEC_CAP_DR1 codecs. libavcodec2010-06-03, by michael
-
aacdec: Work around illegal files with all elem_id tags set to the same value. libavcodec2010-06-03, by alexc
-
ARM: remove some unnecessary ifdefs, fix implicit declaration warnings libavcodec2010-06-02, by mru
-
Avoid division by zero that caused noise, typically at the beginning or libavcodec2010-06-02, by cehoyos
-
Move get_buffer() calls from decode_init() to decode_frame(). Anything else is libavcodec2010-06-01, by rbultje
-
Cosmetics: rename ff_parse_expr() and ff_parse_and_eval_expr() parameters: libavcodec2010-06-01, by stefano
-
Pass codec pixel format list to get_format, if present, fix vdpau decoding libavcodec2010-05-31, by bcoudurier
-
321l: do not use shifted s->linesize instead of correct s->uvlinesize. libavcodec2010-05-29, by kostya
-
In h264 decoder, use jpeg yuv pixel format when full range is set in vui libavcodec2010-05-28, by bcoudurier
-
vp3: The DC-only IDCT is surprisingly not supposed to be bitexact to the libavcodec2010-05-28, by conrad
-
Some fields were incorrectly reset (to NULL) when calling avcodec_copy_context(). libavcodec2010-05-27, by cehoyos
-
Add support for the newly added Nut codec tags (added in Nut r669): libavcodec2010-05-26, by stefano
-
Bump minor version bump and add an APIchanges entry after addition of libavcodec2010-05-26, by stefano
-
Add an AVSTREAM_PARSE_FULL_ONCE parsing mode to parse headers and combine packets once and only once. libavcodec2010-05-26, by alexc
-
aacenc: Split find_max_val() from find_min_book() to eliminate duplicate searches. libavcodec2010-05-25, by alexc
-
Remove useless costly inf checks from the trellis scalefactor search. libavcodec2010-05-25, by alexc
-
aacenc: Trellis over scalefactors using an estimated codebook rather than every codebook. libavcodec2010-05-25, by alexc
-
aacenc: Only trellis over a column of 61 scalefactors (reduced from 256). libavcodec2010-05-25, by alexc
-
aacenc: Factor out find_min_book so it can be used by multiple coefficient coders. libavcodec2010-05-25, by alexc
-
theora: Don't read an excess bit for maximum length long bit runs if the run libavcodec2010-05-25, by conrad
-
Document CODEC_FLAG_EMU_EDGE and avcodec_align_dimensions interaction. libavcodec2010-05-23, by reimar
-
Rename pixelFormatBpsAVI to pix_fmt_bps_avi and pixelFormatBpsMOV to libavcodec2010-05-21, by stefano
-
Make aac_decode_frame() consume zero padding at the end of a packet. libavcodec2010-05-19, by alexc
-
Add missing rawvideo pixel formats to codec tags mappings for nut. libavcodec2010-05-16, by stefano
-
aacenc: Select the TLS (two-loop search) as the default scalefactor coder. libavcodec2010-05-14, by alexc
-
Reindent after r23124. Patch by Sebastian Vater <cdgs basty googlemail com>. libavcodec2010-05-13, by rbultje
-
Grayscale support. Patch by Sebastian Vater <cdgs basty googlemail com>. libavcodec2010-05-13, by rbultje
-
Add mpegaudiodec_float.o dependency on tables header with hardcoded tables libavcodec2010-05-13, by mru
-
1.0 and the resulting exactly representable value must be marked as float as well, libavcodec2010-05-13, by michael
-
Move handling of paletted data to the IFF demuxer. This allows future libavcodec2010-05-13, by rbultje
-
Handle palette underflows, fill remaining space with black (zero) data. libavcodec2010-05-13, by rbultje
-
mlpdec: Allocate channel decoding parameters for each substream. Some file libavcodec2010-05-11, by ramiro
-
Ensure that width and height are > 0. avcodec_open() itself only checks that libavcodec2010-05-10, by rbultje
-
Reorder nut specific codec tags and add a comment for marking them as libavcodec2010-05-09, by stefano
-
Add support to the Y411 codec tag, corresponding to the rawvideo pixel libavcodec2010-05-09, by stefano
-
Optimize decodeplane8(), patch by Sebastian Vater <cdgs basty googlemail com>. libavcodec2010-05-08, by rbultje
-
Add intra refresh and crf-max support to the libavcodec libx264 wrapper. libavcodec2010-05-06, by darkshikari
-
Make the faac inspired quantizer search make sense for a slightly narrower definition of "make sense." libavcodec2010-05-06, by alexc
-
schroenc: Use constant quality for constant quality, not noise threshold libavcodec2010-05-05, by conrad
-
schroenc: Don't touch gop_structure by default, it should be left adaptive libavcodec2010-05-05, by conrad
-
Revert r22974 int->unsigned parts that don't have any meaningful effect. libavcodec2010-05-03, by rbultje
-
10l: The SBR refactor requires the use of 2 independent output X buffers. libavcodec2010-05-03, by alexc
-
amrnbdec: Apply AMR_SAMPLE_SCALE when finishing the decoder output libavcodec2010-05-03, by mstorsjo
-
Fix buffer overrun (or, well, actually a typo, 80 should be 0x80...). libavcodec2010-05-01, by rbultje
-
Add version to AVClass so we can add to and use fields of AVClass without ABI issues. libavcodec2010-04-28, by michael
-
Move some branches outside looped code. Should improve the generated asm (and libavcodec2010-04-26, by rbultje
-
Switch some ints to unsigned (they can only have positive values, this allows libavcodec2010-04-26, by rbultje
-
Make avcodec_check_dimensions() return AVERROR(EINVAL) rather than -1 libavcodec2010-04-25, by stefano
-
ac3dec: return smaller of buf_size and frame_size instead of always returning libavcodec2010-04-22, by jbr
-
Move clipping of audio samples (for those codecs outputting float) from decoder libavcodec2010-04-21, by rbultje
-
Make the Sipr16k postfilter function write data into the target/output buffer. libavcodec2010-04-21, by rbultje
-
Split input/output data arguments to ff_acelp_apply_order_2_transfer_function(). libavcodec2010-04-21, by rbultje
-
Split the input/output data arguments to ff_adaptive_gain_control(). libavcodec2010-04-21, by rbultje
-
theora: coeff huffman codes are allowed to be up to 32 bits long (for 32 tokens) libavcodec2010-04-21, by conrad
-
H.264: move avctx->{profile,level} init before AVCodecContext.get_format(). libavcodec2010-04-15, by gb
-
Change ff_raw_pixelFormatTags RGB entries (RGB555, BGR555, RGB565, libavcodec2010-04-12, by stefano
-
Change constness for func[12]_name parameters of ff_parse_expr() and libavcodec2010-04-12, by stefano
-
Move AVEvalExpr declaration at the beginning of the file, where it is libavcodec2010-04-11, by stefano
-
Print an error and skip PS when PS is found but explicitly found but libavcodec2010-04-08, by alexc
-
Reduce the size of the bidir refine hashtable from 4096 to 256 and libavcodec2010-04-02, by michael
-
Convert two "m" constraints to MANGLE to fix compilation with some compilers. libavcodec2010-04-01, by reimar
-
Define AVMediaType enum, and use it instead of enum CodecType, which libavcodec2010-03-30, by stefano
-
Make sure the EC code does not attempt to use inter based concealment if there libavcodec2010-03-30, by michael
-
Set VDPAU H264 picture parameter field_order_cnt and frame_num at the libavcodec2010-03-30, by cehoyos
-
Include appropriate header in table generators instead of using a dummy libavcodec2010-03-29, by reimar