summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* swscale-test: cosmetic alignmentRamiro Polla2010-09-161-2/+2
| | | | Originally committed as revision 32265 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* Cosmetics: fix weird align.Stefano Sabatini2010-09-161-1/+1
| | | | Originally committed as revision 25134 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Use <> for system headers inclusion.Stefano Sabatini2010-09-161-2/+2
| | | | Originally committed as revision 25133 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix copyright notice, make it more consistent with the rest of FFmpeg.Stefano Sabatini2010-09-161-1/+1
| | | | Originally committed as revision 25132 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix grammar in the ocv_smooth filter documentation.Stefano Sabatini2010-09-161-4/+4
| | | | Originally committed as revision 25131 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Prefer "X" over ``X'', looks more readable and more consistent withStefano Sabatini2010-09-161-7/+7
| | | | | | the rest of FFmpeg docs. Originally committed as revision 25130 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove useless comment.Carl Eugen Hoyos2010-09-161-1/+0
| | | | Originally committed as revision 25129 to svn://svn.ffmpeg.org/ffmpeg/trunk
* swscale: remove useless temporary variableRamiro Polla2010-09-161-5/+3
| | | | Originally committed as revision 32258 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* swscale: factorize plane copying code out of 2 functionsRamiro Polla2010-09-161-27/+23
| | | | Originally committed as revision 32257 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* swscale-test: always use bilinear scaler to get output for SSDRamiro Polla2010-09-161-1/+1
| | | | Originally committed as revision 32256 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* Allow float values for libmp3lame quality.James Darnley2010-09-152-2/+3
| | | | | | Patch by James Darnley, james D darnley A gmail Originally committed as revision 25128 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Allow audiogen to take commandline parameters for sample rate and number ofJustin Ruggles2010-09-151-30/+48
| | | | | | channels. Originally committed as revision 25127 to svn://svn.ffmpeg.org/ffmpeg/trunk
* rtsp: Handle standard assigned codec names for private payload types, tooMartin Storsjö2010-09-151-0/+6
| | | | Originally committed as revision 25126 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Handle G.722 in RTP, and all the exceptions mandated in RFC 3551Martin Storsjö2010-09-154-1/+26
| | | | Originally committed as revision 25125 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Check avctx width/height more thoroughly (e.g. all values 0 except width wouldReimar Döffinger2010-09-151-3/+8
| | | | | | | | | | have been accepted before). Also do not fail if they are invalid but instead override them to 0. This allows decoding e.g. MPEG video when only the container values are corrupted. For encoding a value of 0,0 of course makes no sense, but was allowed through before and will be caught by an extra check in the encode function. Originally committed as revision 25124 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Clarify what av_read_frame() returns.Michael Niedermayer2010-09-141-0/+5
| | | | Originally committed as revision 25123 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Update pathscale compiler detectionMåns Rullgård2010-09-141-1/+1
| | | | Originally committed as revision 25122 to svn://svn.ffmpeg.org/ffmpeg/trunk
* ARM: fix NEON h264_idct_add8Måns Rullgård2010-09-141-4/+4
| | | | Originally committed as revision 25121 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add av_popcount() to libavutil/common.h and bump minor versionTomas Härdin2010-09-142-1/+18
| | | | Originally committed as revision 25120 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Rename h264_idct_sse2.asm to h264_idct.asm; move inline IDCT asm fromRonald S. Bultje2010-09-145-592/+908
| | | | | | | | | | | | | h264dsp_mmx.c to h264_idct.asm (as yasm code). Because the loops are now coded in asm instead of C, this is (depending on the function) up to 50% faster for cases where gcc didn't do a great job at looping. Since h264_idct_add8() is now faster than the manual loop setup in h264.c, in-asm idct calling can now be enabled for chroma as well (see r16207). For MMX, this is 5% faster. For SSE2 (which isn't done for chroma if h264.c does the looping), this makes it up to 50% faster. Speed gain overall is ~0.5-1.0%. Originally committed as revision 25119 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Implement libopencv smooth filter.Stefano Sabatini2010-09-147-2/+196
| | | | Originally committed as revision 25118 to svn://svn.ffmpeg.org/ffmpeg/trunk
* rgb2rgb: don't misuse HAVE_* definesRamiro Polla2010-09-142-87/+83
| | | | | | Introduce and use COMPILE_TEMPLATE_* instead. Originally committed as revision 32241 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* Limit av_log repeat detection to terminals so as to avoid filling files withMichael Niedermayer2010-09-141-1/+7
| | | | | | lots of mess. Originally committed as revision 25117 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Reindent after r25115.Carl Eugen Hoyos2010-09-131-3/+3
| | | | Originally committed as revision 25116 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add R10k decoder.Zhou Zongyi2010-09-138-1/+30
| | | | | | | Original patch by Zhou Zongyi, zhouzy A os pku edu cn, resubmitted by James Darnley, james.darnley gmail, changes by me. Originally committed as revision 25115 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Test lowres before codec init.Carl Eugen Hoyos2010-09-131-6/+6
| | | | Originally committed as revision 25114 to svn://svn.ffmpeg.org/ffmpeg/trunk
* swscale: indentation and emtpy line cosmeticsRamiro Polla2010-09-131-5/+5
| | | | Originally committed as revision 32222 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* swscale: avoid reading prior to the source buffer in planar2x() MMX2Ramiro Polla2010-09-132-3/+15
| | | | Originally committed as revision 32221 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* fix x11grab example in e.g. the manpage so that they actually workReinhard Tartler2010-09-131-2/+2
| | | | Originally committed as revision 25113 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Apply minor simplification in av_read_image_line().Stefano Sabatini2010-09-121-4/+3
| | | | Originally committed as revision 25112 to svn://svn.ffmpeg.org/ffmpeg/trunk
* pixdesc: indentMåns Rullgård2010-09-121-9/+9
| | | | Originally committed as revision 25111 to svn://svn.ffmpeg.org/ffmpeg/trunk
* pixdesc: use 8-bit accesses when possible in av_read/write_image_line()Måns Rullgård2010-09-121-1/+15
| | | | | | | This fixes out of bounds accesses for big endian formats and should be a little faster. Originally committed as revision 25110 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Cosmetics: use x ? y : z construct and merge intialization andStefano Sabatini2010-09-121-3/+1
| | | | | | definition for the val variable in av_read_image_line(). Simplify. Originally committed as revision 25109 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Cosmetics: simplify layout of fmt_conversion_table, make it shorterStefano Sabatini2010-09-121-75/+16
| | | | | | and more readable. Originally committed as revision 25108 to svn://svn.ffmpeg.org/ffmpeg/trunk
* swscale-test: allow specifying src/dst pixel formatsRamiro Polla2010-09-121-6/+33
| | | | Originally committed as revision 32215 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* indentRamiro Polla2010-09-121-12/+12
| | | | Originally committed as revision 32214 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* swscale-test: take input from reference fileRamiro Polla2010-09-121-19/+118
| | | | | | | If the CRC from the src->dst conversion matches a reference, it is not necessary to perform a dst->yuva420p conversion and check the SSD. Originally committed as revision 32213 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* swscale-test: always use SWS_BILINEAR to convert from ref to srcRamiro Polla2010-09-121-4/+3
| | | | Originally committed as revision 32212 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* swscale-test: move conversion from ref to source back to doTest()Ramiro Polla2010-09-121-30/+43
| | | | | | | The source format parameters are kept in static variables and conversion from ref to source is only made when any parameter changes. Originally committed as revision 32211 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* rgb2rgb: replace shuffle_bytes_2103() by optimized rgb32tobgr32()Ramiro Polla2010-09-123-6/+4
| | | | Originally committed as revision 32190 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* Set a constant frame size for encoding G.726 audio.Justin Ruggles2010-09-112-5/+12
| | | | Originally committed as revision 25107 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Cosmetics: apply minor style fixes.Stefano Sabatini2010-09-111-14/+14
| | | | Originally committed as revision 25106 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Read all id3v2 tags at the beginning of mp3 files.David Byron2010-09-112-3/+10
| | | | | | Patch by David Byron, dbyron dbyron com Originally committed as revision 25105 to svn://svn.ffmpeg.org/ffmpeg/trunk
* indentRamiro Polla2010-09-111-4/+4
| | | | Originally committed as revision 32157 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* swscale: remove unused codeRamiro Polla2010-09-111-7/+0
| | | | | | | yvu9ToYv12Wrapper() used to support yv12 with the chroma planes either in the uv order or the vu order. FFmpeg no longer has a pixel format in vu order. Originally committed as revision 32156 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* rgb2rgb: remove unused yvu9toyv12 functionRamiro Polla2010-09-111-11/+0
| | | | Originally committed as revision 32155 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* Add a FATE test for the G.722 decoderMartin Storsjö2010-09-112-0/+170
| | | | Originally committed as revision 25104 to svn://svn.ffmpeg.org/ffmpeg/trunk
* tta: remove stray semicolonMåns Rullgård2010-09-111-1/+1
| | | | Originally committed as revision 25103 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Allow mpeg encoding with qscale and very low frame rate.James Darnley2010-09-101-1/+1
| | | | | | Patch by James Darnley, james D darnley A gmail Originally committed as revision 25102 to svn://svn.ffmpeg.org/ffmpeg/trunk
* FLV MetadataTomás Touceda2010-09-101-0/+8
| | | | | | Patch by Tomás Touceda, chiiph gentoo org Originally committed as revision 25101 to svn://svn.ffmpeg.org/ffmpeg/trunk
OpenPOWER on IntegriCloud