summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
* Move AMR-NB frame unpacking code to a common file so it can be reused inMarcelo Galvăo Póvoa2010-09-102-18/+70
| | | | | | | | the AMR-WB decoder. Patch by Marcelo Galvăo Póvoa. Originally committed as revision 25100 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Update H263_AIC asm offset for the apple variantLuca Barbato2010-09-101-1/+1
| | | | Originally committed as revision 25099 to svn://svn.ffmpeg.org/ffmpeg/trunk
* aacdec: Rework channel mapping compatibility hacks.Alex Converse2010-09-102-24/+4
| | | | | | | | | | For a PCE based configuration map the channels solely based on tags. For an indexed configuration map the channels solely based on position. This works with all known exotic samples including al17, elem_id0, bad_concat, and lfe_is_sce. Originally committed as revision 25098 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Cosmetics: remove useless parentheses.Stefano Sabatini2010-09-101-2/+2
| | | | Originally committed as revision 25097 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix 24 bpp CSCD decoding, as for Windows bitmaps in this (and only this)Reimar Döffinger2010-09-101-10/+17
| | | | | | | | case the stride must be aligned to a multiple of 4. The original CSCD encoder just compresses bitmaps it gets via Windows API functions as-is, thus it uses exactly those alignment rules. Originally committed as revision 25096 to svn://svn.ffmpeg.org/ffmpeg/trunk
* nutenc: fix unstable floating-point calculationsMåns Rullgård2010-09-101-2/+2
| | | | Originally committed as revision 25095 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Allow the lowres option to affect audio codecs, tooMartin Storsjö2010-09-102-3/+2
| | | | Originally committed as revision 25094 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove h264 asm items off the GPL-only list. They are LGPL now.Ronald S. Bultje2010-09-101-2/+0
| | | | Originally committed as revision 25093 to svn://svn.ffmpeg.org/ffmpeg/trunk
* LGPL SSE2 H.264 iDCTJason Garrett-Glaser2010-09-103-14/+14
| | | | | | | | This leaves no more GPL-only H.264 decoding asm code. Approved by Loren. Originally committed as revision 25092 to svn://svn.ffmpeg.org/ffmpeg/trunk
* adts demuxer: Set the time base to be the LCM of all ADTS sample rates.Alex Converse2010-09-091-0/+3
| | | | Originally committed as revision 25091 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Update the audio sample rate when doing lowres audio decoding, before ↵Martin Storsjö2010-09-091-0/+5
| | | | | | opening the decoder Originally committed as revision 25090 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix indentation.Reimar Döffinger2010-09-091-1/+1
| | | | Originally committed as revision 25089 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add missing #include <string.h> in x86/cpu.cMåns Rullgård2010-09-091-0/+1
| | | | Originally committed as revision 25088 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add a muxer and demuxer for raw G.722Martin Storsjö2010-09-095-1/+33
| | | | Originally committed as revision 25087 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add G.722 ADPCM audio decoderMartin Storsjö2010-09-096-2/+311
| | | | Originally committed as revision 25086 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Cache detected CPU flagsMåns Rullgård2010-09-091-4/+11
| | | | Originally committed as revision 25085 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Clean up av_get_cpu_flag()Måns Rullgård2010-09-096-28/+17
| | | | | | | | Instead of defining functions in per-arch header files included by the main cpu.c, define them normally and call them from the generic one. Originally committed as revision 25084 to svn://svn.ffmpeg.org/ffmpeg/trunk
* av_fill_image_linesizes -> av_image_fill_linesizesRamiro Polla2010-09-081-1/+1
| | | | Originally committed as revision 25083 to svn://svn.ffmpeg.org/ffmpeg/trunk
* av_fill_image_linesizes -> av_image_fill_linesizesRamiro Polla2010-09-081-2/+2
| | | | Originally committed as revision 32106 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* In mov muxer, write reduced sample aspect ratio values in paspBaptiste Coudurier2010-09-081-2/+2
| | | | Originally committed as revision 25082 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Check dref size based on a patch by googleBaptiste Coudurier2010-09-081-0/+3
| | | | Originally committed as revision 25081 to svn://svn.ffmpeg.org/ffmpeg/trunk
* In mov demuxer, do not override aspect ratio in tkhd by pasp like quicktime, ↵Baptiste Coudurier2010-09-081-6/+7
| | | | | | fix issue #1539 Originally committed as revision 25080 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Use filename as pattern for multiple inclusion guards.Diego Biurrun2010-09-081-3/+3
| | | | Originally committed as revision 25079 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add missing stdint.h #include; necessary to pass 'make checkheaders'.Diego Biurrun2010-09-081-0/+2
| | | | Originally committed as revision 25078 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add APIchanges entry for the av_get_cpu_flags() addition of r25076.Stefano Sabatini2010-09-081-0/+3
| | | | Originally committed as revision 25077 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Move mm_support() from libavcodec to libavutil, make it a publicStefano Sabatini2010-09-0834-81/+156
| | | | | | function and rename it to av_get_cpu_flags(). Originally committed as revision 25076 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove reference to not anymore existing symbol has_altivec and useStefano Sabatini2010-09-081-4/+2
| | | | | | | | mm_support instead. Fix compilation if altivec is present and libxvidff.c is compiled. Originally committed as revision 25075 to svn://svn.ffmpeg.org/ffmpeg/trunk
* rgb2rgb: build SSE2 codepathRamiro Polla2010-09-083-1/+14
| | | | Originally committed as revision 32068 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* Merge has_altivec() function into mm_support(), remove it and useStefano Sabatini2010-09-086-23/+15
| | | | | | | | mm_support() instead. Reduce complexity and simplify pending move to libavutil. Originally committed as revision 25074 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Only draw the actually visible area in vp3_draw_horiz_band.Reimar Döffinger2010-09-081-4/+2
| | | | | | | Fixes a black line in non-swapped, non-mod-16-height Theora videos when vp3_draw_horiz_band is used. Originally committed as revision 25073 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add missing checks on invalid pixel format inStefano Sabatini2010-09-071-2/+2
| | | | | | av_image_fill_linesizes/pointers. Originally committed as revision 25072 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add APIchanges entry after the recent changes to imgutils.h API ofStefano Sabatini2010-09-071-0/+6
| | | | | | r25064 and r25067. Originally committed as revision 25071 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Cosmetics: use plural form for *linesizes arguments ofStefano Sabatini2010-09-072-8/+8
| | | | | | | av_image_copy(), more consistent with the rest of the API and more semantically correct. Originally committed as revision 25070 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove use of deprecated functions av_image_fill_pointers/linesizes inStefano Sabatini2010-09-071-2/+2
| | | | | | libavcodec/utils.c, fix warnings. Originally committed as revision 25069 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Reindent.Stefano Sabatini2010-09-073-5/+5
| | | | Originally committed as revision 25068 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Move av_picture_data_copy() to libavcore, and rename itStefano Sabatini2010-09-078-40/+59
| | | | | | av_image_copy(). Originally committed as revision 25067 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Reimplement av_picture_data_copy() avoiding the use of PixFmtInfoStefano Sabatini2010-09-071-16/+17
| | | | | | | | information. Required for moving the function to libavcore. Originally committed as revision 25066 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Reindent after the last commit.Stefano Sabatini2010-09-071-4/+4
| | | | Originally committed as revision 25065 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Reimplement ff_img_copy_plane() as av_image_copy_plane() in libavcore,Stefano Sabatini2010-09-077-13/+41
| | | | | | and deprecate the old function. Originally committed as revision 25064 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix formatting for negative start times (issue 2139).Christian d'Heureuse2010-09-071-1/+1
| | | | | | Patch by Christian d'Heureuse, chdh inventec ch Originally committed as revision 25063 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Move lsp2lpc_sipr() function to common code so it can be reused in aMarcelo Galvăo Póvoa2010-09-073-27/+32
| | | | | | | | AMRWB decoder. Patch by Marcelo Galvăo Póvoa. Originally committed as revision 25062 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Move AMRNB lsf2lsp() function to common code for using in future AMRWB decoder.Marcelo Galvăo Póvoa2010-09-073-16/+15
| | | | | | Patch by Marcelo Galvăo Póvoa Originally committed as revision 25061 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Check rc_buffer_size value using integer arithmeticMåns Rullgård2010-09-071-1/+1
| | | | | | | | | | Using floating-point here can cause erroneous rejection of parameters due to rounding errors leading to a slightly too large result. This fixes the mxf regression test with gcc 4.5 on x86_32. Originally committed as revision 25060 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add APIchanges entry after the libavcore/imgutils.h renames of r25057.Stefano Sabatini2010-09-071-0/+4
| | | | Originally committed as revision 25059 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Use new imgutils.h API names, fix deprecation warnings.Stefano Sabatini2010-09-0751-66/+66
| | | | Originally committed as revision 25058 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Adopt a hierarchical name scheme for the imgutils.h API. SimplifyStefano Sabatini2010-09-073-12/+68
| | | | | | | grepping and somewhat more consistent with the scheme adopted by other FFmpeg modules API. Originally committed as revision 25057 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Amend documention for the option -prefix.Stefano Sabatini2010-09-071-2/+2
| | | | Originally committed as revision 25056 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Prefer "foo" over ``foo'' in the ffprobe docs.Stefano Sabatini2010-09-071-7/+7
| | | | Originally committed as revision 25055 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Read the number of channels from the 'dac3' tag for AC-3 in MP4.Justin Ruggles2010-09-061-0/+16
| | | | Originally committed as revision 25054 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Make av_fill_image_max_pixsteps() non static non inline.Stefano Sabatini2010-09-062-17/+20
| | | | Originally committed as revision 25053 to svn://svn.ffmpeg.org/ffmpeg/trunk
OpenPOWER on IntegriCloud