log

age author description
2009-04-12 reynaldo Fix wrong size computation for buffer. Patch is part of libavcodec
2009-04-12 diego Remove gcc_fixes.h. It only contains workarounds for unsupported gcc versions. libavcodec
2009-04-12 diego Remove AltiVec optimizations for Snow. They are hindering the development libavcodec
2009-04-12 michael Fix 2 access units in a packet mp4s. libavcodec
2009-04-12 michael Get rid of the non sensical idea of using the current picture for missing libavcodec
2009-04-12 michael Factorize field_end() out. libavcodec
2009-04-12 michael Assert that the first list1 entry is a reference frame. libavcodec
2009-04-12 reimar Add a av_fast_malloc function and replace several uses of av_fast_realloc, libavcodec
2009-04-12 reimar Use void * instead of uint8_t * for the destination buffer for dsp.bswap_buf libavcodec
2009-04-12 reimar Use AVERROR(ENOMEM) instead of AVERROR_NOMEM / -1 in eatqi and mimic decoders libavcodec
2009-04-12 stefano Document pbBufPtr(). libavcodec
2009-04-12 stefano Split bitstream.h, put the bitstream writer stuff in the new file libavcodec
2009-04-12 jbr Add names for 5.0 and 5.1 back speaker channel layouts. libavcodec
2009-04-11 stefano Fix documentation for avcodec_encode_audio(), in the case of PCM audio libavcodec
2009-04-11 stefano Document the 'size' parameter of set_put_bits_buffer_size(). libavcodec
2009-04-11 stefano Document ff_put_string(). libavcodec
2009-04-11 stefano Replace deprecated FF_MM_MMXEXT flag with FF_MM_MMX2. libavcodec
2009-04-11 stefano Rename the 'put_zero' parameter of ff_put_string() to libavcodec
2009-04-11 stefano Add documentation for skip_put_bytes(). libavcodec
2009-04-11 stefano Doxygenate ff_copy_bits(). libavcodec
2009-04-11 stefano Factorize declaration for the two variants of put_bits(). libavcodec
2009-04-11 michael Two INIT_VLC_USE_STATIC cases Carl missed. libavcodec
2009-04-11 michael get rid of INIT_VLC_USE_STATIC in h261. libavcodec
2009-04-11 michael Get rid of INIT_VLC_USE_STATIC in rv10/rv20. libavcodec
2009-04-11 michael Get rid of INIT_VLC_USE_STATIC in 4xm. libavcodec
2009-04-11 michael Get rid of INIT_VLC_USE_STATIC in asv1. libavcodec
2009-04-11 michael Get rid of INIT_VLC_USE_STATIC in msmpeg4 libavcodec
2009-04-11 stefano Clarify documentation for put_bits_count(). libavcodec
2009-04-11 reimar Get rid of av_destruct_packet_nofree and use NULL instead. libavcodec
2009-04-11 cehoyos Use INIT_VLC_USE_STATIC and not its value "1". libavcodec
2009-04-10 stefano Document align_put_bits(). libavcodec
2009-04-10 stefano Doxygenate flush_put_bits() documentation. libavcodec
2009-04-10 stefano Doxygenate put_bits_count() documentation. libavcodec
2009-04-10 stefano Doxygenate init_put_bits(). libavcodec
2009-04-10 diego cosmetics: Rename prn variable to prng (Pseudo Random Number Generator). libavcodec
2009-04-10 stefano Add support to CorePNG P-frames. libavcodec
2009-04-10 reimar Loop up to MAX_THREADS instead of h->s.avctx->thread_count to free the thread libavcodec
2009-04-10 diego Remove unused variables along with the related warnings. libavcodec
2009-04-10 reimar Add forgotten void return type to ff_h264_free_context libavcodec
2009-04-10 diego Fix sigill on non-MMX2 CPUs. libavcodec
2009-04-10 stefano Use the new avcodec_decode_* API. libavcodec
2009-04-10 reimar Make sure error resilience does not try to use unavailable reference frames. libavcodec
2009-04-10 reimar Add a ff_h264_free_context function and call it from the H.264 parser. libavcodec
2009-04-10 michael Make sure mpeg2 has its height rounded up to 32 as that is needed libavcodec
2009-04-09 michael Do not use SSE2 SAD for snow as it requires more alignment than can be libavcodec
2009-04-09 lucabe Fix documentation for the "-ps" option libavcodec
2009-04-09 michael Make sure the next used frame is released so get_buffer() wont fail. libavcodec
2009-04-09 michael Move release_buffer() up so it is prior to a future call to it. libavcodec
2009-04-09 michael Factorize release_buffer() libavcodec
2009-04-09 michael Make sure spatial_decomposition_count is not too large for picture size. libavcodec
2009-04-09 michael Skip non intra frames that have no reference frames. libavcodec
2009-04-09 michael Make sure spatial_decomposition_count is >0. libavcodec
2009-04-09 michael Make sure the block array is of the correct size. libavcodec
2009-04-09 michael Check spatial_decomposition_count too, fixes another crash. libavcodec
2009-04-09 michael 10l, forgot to remove old code, which broke snow. libavcodec
2009-04-09 michael Factorize check of read symbols. libavcodec
2009-04-09 michael Fix spatial_decomposition_type validity check. libavcodec
2009-04-09 michael Fix crash when max_ref_frames was out of range. libavcodec
2009-04-09 diego Remove unnecessary gcc_fixes.h #include. libavcodec
2009-04-09 diego cosmetics: Reformat comment paragraph and fix a few typos in it. libavcodec
2009-04-08 michael Fix mb_height for interlaced mpeg2. libavcodec
2009-04-08 ramiro configure: Add --enable-runtime-cpudetect libavcodec
2009-04-08 reimar Add av_shrink_packet function for use in av_get_packet that reduces pkt->size libavcodec
2009-04-08 superdump Clarify which time_base the relevant members of AVPacket use libavcodec
2009-04-07 superdump Fix second amr_nb_decode_frame() to also use the new AVPacket argument libavcodec
2009-04-07 rbultje Move av_packet_*() functions from libavformat/ to libavcodec/, where the libavcodec
2009-04-07 aurel fix vp5/vp6 decoding by using new prototype for decode function libavcodec
2009-04-07 rbultje Implement avcodec_decode_video2(), _audio3() and _subtitle2() which takes an libavcodec
2009-04-07 rbultje Move AVPacket up a bit, so that structs/functions that include AVPacket can libavcodec
2009-04-07 reynaldo Move scale factor computation to its own function. Patch by Kenan libavcodec
2009-04-06 michael Try to honor even completely invalid motion vectors as far as is libavcodec
2009-04-06 jbr Add convenience macros for 5.0/5.1 back speaker configurations. libavcodec
2009-04-06 ramiro mlpdec: Filters and matrices may change only once per substream per access unit. libavcodec
2009-04-05 ramiro mlpdec: There must be no extraword for MLP. libavcodec
2009-04-05 ramiro mlpdec: Validate non-restart bit from the substream header. libavcodec
2009-04-05 ramiro mlpdec: matrix_out_ch must not be greater than max_matrix_channel, and not max_channel. libavcodec
2009-04-05 michael Make sure the last bits of huffyuv frames are zeroed. libavcodec
2009-04-04 conrad ARM: NEON optimized put_signed_pixels_clamped libavcodec
2009-04-04 mru ARM: NEON optimised add_pixels_clamped libavcodec
2009-04-04 reynaldo Add missing static qualifier from function declaration. Patch by Kenan libavcodec
2009-04-04 stefano Rename FF_MM_MMXEXT to FF_MM_MMX2, for both clarity and consistency libavcodec
2009-04-03 reimar Mark line_skip3 asm argument as output-only instead of using av_uninit. libavcodec
2009-04-03 reimar Mark put_signed_pixels_clamped_mmx output operands as early-clobber because libavcodec
2009-04-03 reimar Use DECLARE_ASM_CONST for non-global ff_vector128 constant used via MANGLE libavcodec
2009-04-03 gb Add VC-1 bitstream decoding through VA API. libavcodec
2009-04-02 alexc Rewrite put_signed_pixels_clamped_mmx() to eliminate mmx.h from dsputil_mmx.c. libavcodec
2009-04-02 stefano Move AVPacket declaration from avformat.h to avcodec.h. libavcodec
2009-04-02 cehoyos Map MOV fourcc YUV2 correctly to PIX_FMT_YUYV422. libavcodec
2009-04-02 gb Register VA API HW accelerators. libavcodec
2009-04-02 gb Add hwaccel configury. This generates CONFIG_<CODEC>_<HWACCEL>_HWACCEL libavcodec
2009-04-02 gb Add VA API pixfmt (only VLD is available ATM). libavcodec
2009-04-02 gb Add MPEG-4 / H.263 bitstream decoding through VA API. libavcodec
2009-04-01 stefano Extend read_line() to make it take a read_pal_component parameter. libavcodec
2009-04-01 conrad Add SSE4 detection support libavcodec
2009-04-01 gb Add 16cif video frame size abbreviation. i.e. -s alias for 1408x1152. libavcodec
2009-04-01 conrad Remove unused FILTSIGN macro libavcodec
2009-04-01 mru Remove aandcttab.o from dct-test dependencies, the lib includes it libavcodec
2009-03-31 stefano Reindent after the last patch. libavcodec
2009-03-31 stefano Add/fix support for bitstream formats reading in read_line(). libavcodec
2009-03-31 stefano Make the step and offset fields of the component descriptor express a libavcodec
2009-03-31 reimar Fix ipvideo_decode_block_opcode_0xD again. libavcodec
2009-03-31 stefano Document read_line(). libavcodec
2009-03-31 stefano Add a notice telling that the behavior of skip_put_bits() is undefined libavcodec
2009-03-31 reimar Cosmetics: remove some pointless {} libavcodec
2009-03-31 reimar Slightly simplify ipvideo_decode_block_opcode_0xD libavcodec
2009-03-31 reimar One more simplification for ipvideo_decode_block_opcode_0xA libavcodec
2009-03-31 stefano Cosmetics: reorder the pixel format descriptors to make them match the libavcodec
2009-03-31 reimar Slightly simplify first part of ipvideo_decode_block_opcode_0xA, libavcodec
2009-03-31 stefano Change the order of the components for RGB565LE and RGB565BE, libavcodec
2009-03-31 stefano Add comments specifying the name of the components in the descriptors. libavcodec
2009-03-31 reimar Make ipvideo_decode_block_opcode_0x8 a lot simpler by decoding the pixels libavcodec
2009-03-31 reimar Fix a too small CHECK_STREAM_PTR value in interplayvideo.c libavcodec
2009-03-31 stefano Make read_line() take as parameter a const AVPixFmtDescriptor * rather than a libavcodec
2009-03-31 diego Replace MPEG group reference DCT implementation by newly rewritten version. libavcodec
2009-03-31 diego Replacement reference DCT implementation. libavcodec
2009-03-31 reimar Avoid the last two uses of bitmasks in interplayvideo libavcodec
2009-03-31 reimar 100l, fix FATE test broken by r18264 libavcodec
2009-03-31 reimar Reindent libavcodec
2009-03-31 reimar Deduplicate code by moving it outside the if/else libavcodec
2009-03-31 reimar Rearrange how the different cases are checked to reduce the number of libavcodec
2009-03-31 reimar Avoid "reloading" code by using a 64 bit type for the flags and loading all at once. libavcodec
2009-03-31 reimar Remove now pointless temporary pix variables. libavcodec
2009-03-31 reimar Slightly simplify part of ipvideo_decode_block_opcode_0x8 libavcodec
2009-03-31 reimar Fix indentation libavcodec
2009-03-31 reimar Avoid code duplication by using ?: and array indexing instead of if..else libavcodec
2009-03-31 reimar Prettify some assignments libavcodec
2009-03-31 reimar Get rid of some pointless bitmask/shifter variables in interplayvideo.c libavcodec
2009-03-31 diego Mark non-exported functions in test and example programs as static. libavcodec
2009-03-31 gb Remove inclusion of va.h, not needed anymore after r18256. libavcodec
2009-03-31 diego Give better names to reference DCT functions. libavcodec
2009-03-31 gb Improve VA API buffers allocation logic. This also reduces struct vaapi_context libavcodec
2009-03-31 benoit Move declaration of prn before any assignment. libavcodec
2009-03-30 gb Record MPEG-4 sprite trajectory points [up to num_sprite_warping_points][isY]. libavcodec
2009-03-30 diego Add required va/va.h header, should fix 'make checkheaders'. libavcodec
2009-03-30 ramiro mlpdec: Simplify check for substream_parity_present. libavcodec
2009-03-30 ramiro mlpdec: Simplify no restart header seen error. libavcodec
2009-03-30 ramiro mlpdec: Simplify substream length mismatch error. libavcodec
2009-03-30 ramiro mlpdec: Prettify substream parity check. libavcodec
2009-03-30 ramiro mlpdec: Cleaner and better termination word check. libavcodec
2009-03-30 ramiro mlpdec: More validation for read_channel_params() libavcodec
2009-03-30 ramiro mlpdec: whitespace cosmetics. libavcodec
2009-03-30 ramiro mlpdec: Simplify &foo[0] to foo and use index (which has just been initialized libavcodec
2009-03-30 ramiro mlpdec: Split filter_state_buffer into [fi]irbuf and fp to [fi]ir. libavcodec
2009-03-30 ramiro mlpdec: Unroll copying filter state data and filtering for the two filters. libavcodec
2009-03-30 ramiro mlpdec: Max filter orders for FIR and IIR are 8 and 4 respectively. libavcodec
2009-03-29 reimar Merge the 3 COPY_FROM_* macros with lots of duplicated code into a single libavcodec
2009-03-29 reimar Change CHECK_STREAM_PTR macro to correctly handle the (extremely unlikely) libavcodec
2009-03-29 reimar Simplify check for leftover bytes after decoding for interplayvideo. libavcodec
2009-03-29 reimar Get rid of pointless "B" array in interplayvideo decoder. libavcodec
2009-03-29 reimar Replace many tiny loops in the interplayvideo decoder by memset, memcpy libavcodec
2009-03-29 reimar Make ipvideo_decode_block array constant, compile-time initialized instead libavcodec
2009-03-29 diego Globally ignore all example binaries. libavcodec
2009-03-29 diego Generalize example target rule in common.mak so that it sets a -example$(EXESUF) libavcodec
2009-03-29 diego Rename apiexample.c --> api-example.c to be consistent with other example files. libavcodec
2009-03-28 ramiro mlpdec: Remove few random dprintf()s. libavcodec
2009-03-27 ramiro mlpdec: Check for blocksize in proper range. libavcodec
2009-03-27 ramiro mlpdec: quant_step_size can be any value from 0 to 0xF. libavcodec
2009-03-27 ramiro mlpdec: output_shift can be any value from -8 to 7. libavcodec
2009-03-27 ramiro mlpdec: output_shift is signed libavcodec
2009-03-27 ramiro mlpdec: Split read_channel_params() into its own function. libavcodec
2009-03-27 ramiro mlpdec: Split read_matrix_params() into its own function. libavcodec
2009-03-27 kostya Merge some cases for reading raw data with different bit depths in BMP libavcodec
2009-03-26 diego Make svn:ignore properties globally consistent. Ignore all .d, .ho, .exe, -test libavcodec
2009-03-26 ramiro Use intptr_t when casting pointers to int. libavcodec
2009-03-25 diego fft-test does not depend on fdctref.o. libavcodec
2009-03-25 diego Move adding the '-test$(EXESUF)' suffix to test programs into common.mak. libavcodec
2009-03-24 jbr cosmetics: add an @return to documentation for decode_frame_header() libavcodec
2009-03-24 superdump Update apiexample.c to use the newer avcodec_decode_audio2() API. This also libavcodec
2009-03-24 jbr flacdec: split frame header decoding and validation into a separate libavcodec
2009-03-23 gb Add MPEG-2 bitstream decoding through VA API. libavcodec
2009-03-23 benoit Move av_class to AVResampleContext instead of ReSampleContext. libavcodec
2009-03-23 alexc AAC: Ignore cc_domain for independent (time domain) coupling. libavcodec
2009-03-22 stefano Add pcxenc.o to the $OBJS list, it was erroneously removed from it in libavcodec
2009-03-22 jbr flacdec: cosmetics: white space libavcodec
2009-03-22 jbr flacdec: cosmetics: separate the pure frame header parsing code from libavcodec
2009-03-22 diego Rename 'tests' target to 'testprogs'. It is too easily confused with the libavcodec
2009-03-22 diego Split AVCodec declarations for PAM/PBM/PGM/PGMYUV/PPM decoders and encoders libavcodec
2009-03-22 stefano Make the pixel formats which were defined as macros: libavcodec
2009-03-22 jbr flacdec: allow sample rate to change mid-stream, but log a warning libavcodec
2009-03-22 diego Add rule for building API example programs. libavcodec
2009-03-22 stefano Factorize: use the X_NE() macro in avcodec_get_pix_fmt(). libavcodec
2009-03-22 jbr flacdec: cosmetics: indentation libavcodec
2009-03-22 stefano Implement X_NE() macro. libavcodec
2009-03-22 jbr flacdec: change frame bps validation to return an error value if bps libavcodec
2009-03-22 jbr flacdec: cosmetics: add some braces to if/else statements libavcodec
2009-03-22 jbr flacdec: skip frame when allocated data size is too small libavcodec
2009-03-22 jbr 10l: don't check against current layout until after validating ch_mode. libavcodec
2009-03-22 jbr flacdec: give a more accurate error message when validating channel libavcodec
2009-03-22 stefano Export to pixdesc.h the av_pix_fmt_descriptors array. libavcodec
2009-03-22 jbr flacdec: move data size check to flac_decode_frame() libavcodec
2009-03-22 jbr flacdec: comments and white space. libavcodec
2009-03-22 jbr cosmetics: vertical alignment libavcodec
2009-03-22 jbr flacdec: remove unneeded local variable libavcodec
2009-03-22 jbr flacdec: cosmetics: rename 3 variables libavcodec
2009-03-22 jbr flacdec: use a local variable for GetBitContext in decode_frame() libavcodec
2009-03-22 kostya Add AURA 1 and 2 codec IDs and register their FOURCCs libavcodec
2009-03-22 bcoudurier init ext sample rate to 0 if not present libavcodec
2009-03-22 gb Add common VA API data structures and helpers. libavcodec
2009-03-21 gb Add support for HW accelerated VC-1 decoding through the new libavcodec
2009-03-21 stefano Change the RGB5X5/BGR5X5 pixel format defines so that we have little libavcodec
2009-03-21 stefano Extend the behavior of avcodec_get_pix_fmt(), if it cannot find a libavcodec
2009-03-21 stefano Globally prefer enum PixelFormat over int when it makes sense. libavcodec
2009-03-21 diego Fix reference to av_random_init where av_lfg_init was meant. libavcodec
2009-03-21 kostya Make Smacker audio decoder output audio in original bit depth libavcodec
2009-03-21 diego Remove deprecated functions and structures on next version bump. libavcodec
2009-03-21 reimar Fix avpicture_get_size for non-paletted formats with a helper palette libavcodec
2009-03-21 jbr add a function to calculate a more accurate estimate for maximum FLAC libavcodec
2009-03-21 jbr flacdec: account for frame and subframe header overhead when calculating libavcodec
2009-03-21 jbr revert accidental unrelated change in last commit libavcodec
2009-03-21 jbr share sample rate and blocksize tables between the FLAC encoder and FLAC libavcodec
2009-03-21 jbr flacenc: remove unneeded variable, 'min_encoded_framesize' and use libavcodec
2009-03-21 jbr flacdec: remove unneeded variable, 'assignment' libavcodec
2009-03-21 jbr flacdec: cosmetics: rename 'decorrelation' to 'ch_mode' libavcodec
2009-03-21 jbr flacenc: remove unneeded context variable, 'ch_code' libavcodec
2009-03-21 jbr share channel mode constants between the FLAC decoder and FLAC encoder libavcodec
2009-03-20 stefano Remove declaration of the removed function img_convert(). libavcodec
2009-03-20 banan Get rid of av_random in cook.c libavcodec
2009-03-20 banan Get rid of av_random in nellymoserdec.c libavcodec
2009-03-20 cehoyos PCX encoder that handles 1-, 8-, and 24-bpp pixfmts. libavcodec
2009-03-20 ramiro mlp, truehd: support non 1:1 channel mapping. libavcodec
2009-03-20 ramiro Support "next parameter flags present" flag. libavcodec
2009-03-20 ramiro truehd: support up to 3 substreams. libavcodec
2009-03-20 gb Rename hwaccel_data_private to hwaccel_picture_private. libavcodec
2009-03-20 diego Replace random() usage in test programs by av_lfg_*(). libavcodec