summaryrefslogtreecommitdiff
path: root/libavcodec
Commit message (Collapse)AuthorAge
* cosmetics: Remove file name from file header.Diego Biurrun2009-03-15
| | | | Originally committed as revision 17984 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Expand "lsb" to "least significant bits".Stefano Sabatini2009-03-15
| | | | Originally committed as revision 17978 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Rename the (yet not defined) macros:Stefano Sabatini2009-03-15
| | | | | | | | PIX_FMT_RGB565_BE -> PIX_FMT_RGB565BE PIX_FMT_RGB565_LE -> PIX_FMT_RGB565LE for consistency with the other pixfmts macros. Originally committed as revision 17977 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Correct MV prediction for B-frame blocks in RV4 decoderKostya Shishkov2009-03-15
| | | | Originally committed as revision 17974 to svn://svn.ffmpeg.org/ffmpeg/trunk
* prettyprinting cosmeticsDiego Biurrun2009-03-14
| | | | Originally committed as revision 17962 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add av_uninit to vsrcBuc variable to work around someDiego Biurrun2009-03-14
| | | | | | 'may be used uninitialized' warnings. Originally committed as revision 17961 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Improve description of next_free_data_block_num struct member.Diego Biurrun2009-03-14
| | | | Originally committed as revision 17960 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add 1bpp, 8bpp, 15bpp, and 16bpp support to BMP encoder.Daniel Verkamp2009-03-13
| | | | | | Patch by Daniel Verkamp, daniel drv nu Originally committed as revision 17954 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Print timing_info on -debug 1.Michael Niedermayer2009-03-13
| | | | Originally committed as revision 17949 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix direct and skip MB motion compensation in RV4:Kostya Shishkov2009-03-13
| | | | | | | two conditions were incomplete and zeroing motion vectors was performed only on half of them. Originally committed as revision 17947 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Use av_mallocz() to initialize hwaccel_data_private.Gwenole Beauchesne2009-03-11
| | | | Originally committed as revision 17942 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix bug when elbg->utility_inc[elbg->numCB-1] == 1Vitor Sessak2009-03-10
| | | | Originally committed as revision 17926 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add REGISTER_HWACCEL() for hardware accelerators.Gwenole Beauchesne2009-03-10
| | | | Originally committed as revision 17925 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix unaligned access in ff_copy_bits()Måns Rullgård2009-03-09
| | | | Originally committed as revision 17921 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Cosmetics from Kenan Gillet's 'extract and share weighted_vector_sumf'Reynaldo H. Verdejo Pinochet2009-03-09
| | | | | | patchset. Just a reindent. Originally committed as revision 17917 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Functional part Kenan Gillet's 'extract and share weighted_vector_sumf'Reynaldo H. Verdejo Pinochet2009-03-09
| | | | | | | patchset. Idea is to share this common code between the AMR and QCELP decoders. Originally committed as revision 17916 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add private HW accel data infrastructure.Gwenole Beauchesne2009-03-09
| | | | Originally committed as revision 17899 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Use FLG pseudo-random number generator in RoQ and ELBGVitor Sessak2009-03-08
| | | | Originally committed as revision 17881 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Make Musepack decoders use LFG pseudorandom generatorKostya Shishkov2009-03-08
| | | | Originally committed as revision 17880 to svn://svn.ffmpeg.org/ffmpeg/trunk
* VQF demuxerVitor Sessak2009-03-07
| | | | Originally committed as revision 17866 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Re-indent after last commit.Alex Converse2009-03-06
| | | | Originally committed as revision 17861 to svn://svn.ffmpeg.org/ffmpeg/trunk
* If we get an error from ff_aac_parse_header() we should not trust the header ↵Alex Converse2009-03-06
| | | | | | info that it provides. Originally committed as revision 17860 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix the channel allocation bug/assumption (issue 800).Alex Converse2009-03-06
| | | | | | Approved by Rob on IRC. Originally committed as revision 17856 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix H.264 bitstream field log2_max_pic_order_cnt_lsb_minus4Stephen Warren2009-03-06
| | | | | | | | if sps.poc_type == 0. Patch by Stephen Warren, swarren nvidia com Originally committed as revision 17854 to svn://svn.ffmpeg.org/ffmpeg/trunk
* flacdec: Parse the metadata header in the raw FLAC demuxer.Justin Ruggles2009-03-06
| | | | Originally committed as revision 17852 to svn://svn.ffmpeg.org/ffmpeg/trunk
* flacdec: Add a shared function for parsing a FLAC metadata block header.Justin Ruggles2009-03-06
| | | | Originally committed as revision 17851 to svn://svn.ffmpeg.org/ffmpeg/trunk
* pnm: Add missing 'else'. Fixes decoding for 16-bit pgm.Justin Ruggles2009-03-06
| | | | Originally committed as revision 17848 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Mark variables "j" and "structure" in execute_ref_pic_marking() as av_uninitDiego Biurrun2009-03-05
| | | | | | to work around false positive 'may be used uninitialized' warnings. Originally committed as revision 17837 to svn://svn.ffmpeg.org/ffmpeg/trunk
* AAC: hoist dependent gain lookup out of the loopAlex Converse2009-03-05
| | | | Originally committed as revision 17835 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove duplicated MUL16 macro definition, fixes the warning:Diego Biurrun2009-03-05
| | | | | | libavcodec/ac3enc.c:119:1: warning: "MUL16" redefined Originally committed as revision 17832 to svn://svn.ffmpeg.org/ffmpeg/trunk
* ARM: disable inline asm for armccMåns Rullgård2009-03-05
| | | | Originally committed as revision 17831 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add handling of frame position in the parser.Ivan Schreter2009-03-05
| | | | Originally committed as revision 17823 to svn://svn.ffmpeg.org/ffmpeg/trunk
* flacdec: cosmetics: Add a comment with the data of the smallest FLACJustin Ruggles2009-03-05
| | | | | | frame for future reference. Originally committed as revision 17822 to svn://svn.ffmpeg.org/ffmpeg/trunk
* flacdec: There is an even smaller FLAC frame size possibility.Justin Ruggles2009-03-05
| | | | Originally committed as revision 17821 to svn://svn.ffmpeg.org/ffmpeg/trunk
* flacdec: 10l to me. I miscalculated the smallest FLAC frame. It is 16Justin Ruggles2009-03-05
| | | | | | bytes, not 24. Originally committed as revision 17820 to svn://svn.ffmpeg.org/ffmpeg/trunk
* flacdec: cosmetics: move 2 statements to immediately after frameJustin Ruggles2009-03-05
| | | | | | decoding. Originally committed as revision 17819 to svn://svn.ffmpeg.org/ffmpeg/trunk
* flacdec: Simplify frame sync by not using the bitstream reader.Justin Ruggles2009-03-05
| | | | Originally committed as revision 17818 to svn://svn.ffmpeg.org/ffmpeg/trunk
* flacdec: Split the metadata_parse() function into 2 separate functions,Justin Ruggles2009-03-05
| | | | | | parse_streaminfo() and get_metadata_size(). Originally committed as revision 17817 to svn://svn.ffmpeg.org/ffmpeg/trunk
* flacdec: Add a check for small buffer size. This ensures reading asJustin Ruggles2009-03-04
| | | | | | | | much of the frame header as possible without excluding the smallest possible FLAC frame. It also fixes a false positive warning message that was being emitted at the end of decoding. Originally committed as revision 17816 to svn://svn.ffmpeg.org/ffmpeg/trunk
* flacdec: cosmetics: Use a more descriptive variable name for the numberJustin Ruggles2009-03-04
| | | | | | of bytes read, instead of reusing 'i'. Originally committed as revision 17815 to svn://svn.ffmpeg.org/ffmpeg/trunk
* flacdec: Handle 32 bps data when checking allocated size.Justin Ruggles2009-03-04
| | | | Originally committed as revision 17814 to svn://svn.ffmpeg.org/ffmpeg/trunk
* flacdec: Check curr_bps after wasted bits are subtracted.Justin Ruggles2009-03-04
| | | | Originally committed as revision 17813 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix typo: "i" -> "in".Stefano Sabatini2009-03-04
| | | | Originally committed as revision 17812 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add support for ct_type to correctly detect interlaced flagIvan Schreter2009-03-04
| | | | Originally committed as revision 17811 to svn://svn.ffmpeg.org/ffmpeg/trunk
* 100l, interplayvideo uses 8x8 blocks, so call the 8x8 put_pixels_tab functionReimar Döffinger2009-03-04
| | | | | | instead of the 16x16 one. Seems to fix decoding on PPC. Originally committed as revision 17808 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Set AVFrame.reference correctly for nuv decoder.Reimar Döffinger2009-03-04
| | | | Originally committed as revision 17807 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add more correct bound checking in filter_mb().Vitor Sessak2009-03-04
| | | | | | Should fix decoding of CVMAPAQP3_Sony_E.jsv in MinGW Originally committed as revision 17806 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add frame buffer allocators. aka simplify calls toGwenole Beauchesne2009-03-04
| | | | | | AVCodecContext.{get,release}_buffer(). Originally committed as revision 17804 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Part 2 of 2 of Kenan Gillet's 'make ff_qcelp_lspf2lpcReynaldo H. Verdejo Pinochet2009-03-04
| | | | | | | more general' changeset. This one relocates the QCELP especific code to the qcelpdec.* files. Originally committed as revision 17800 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Part 1 of 2 of Kenan Gillet's 'make ff_qcelp_lspf2lpcReynaldo H. Verdejo Pinochet2009-03-04
| | | | | | | | more general' changeset. This one splits ff_qcelp_lspf2lpc into the QCELP-especific ff_qcelp_lspf2lpc + the more general ff_qcelp_lspf2lpc. Originally committed as revision 17799 to svn://svn.ffmpeg.org/ffmpeg/trunk