summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAge
* Replace "-vfilters" by "-vf" in regtests. Should fix regtest breakage.Vitor Sessak2010-05-13
| | | | Originally committed as revision 23109 to svn://svn.ffmpeg.org/ffmpeg/trunk
* FATE: change -vfilters to -vfMåns Rullgård2010-05-13
| | | | Originally committed as revision 23108 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix compilation with low precission mpeg audio decoding.Michael Niedermayer2010-05-13
| | | | Originally committed as revision 23107 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix mpegaudio tablegen.Michael Kostylev2010-05-13
| | | | | | Patch by Michael Kostylev, michael D kostylev A gmail Originally committed as revision 23106 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Support writing 2d float arrays.Michael Kostylev2010-05-13
| | | | | | Patch by Michael Kostylev, michael D kostylev A gmail Originally committed as revision 23105 to svn://svn.ffmpeg.org/ffmpeg/trunk
* rename -vfilters cli option to -vf in ffplay as wellBaptiste Coudurier2010-05-12
| | | | Originally committed as revision 23104 to svn://svn.ffmpeg.org/ffmpeg/trunk
* change a variable-length array to a malloc.Loren Merritt2010-05-12
| | | | Originally committed as revision 23103 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Doxygen av_codec_get_id() and av_codec_get_tag().Stefano Sabatini2010-05-12
| | | | Originally committed as revision 23102 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Revert r31153. It failed to build on:Ramiro Polla2010-05-12
| | | | | | | | | | | x86_64 / Mac OS X gcc 4.0.1 x86_64 / Linux icc (all) x86_64 / Linux gcc 4.0.4 x86_64 / OpenBSD gcc 3.3.5 x86_64 / Linux suncc 5.10 and there are some reports of crashes. Originally committed as revision 31170 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* Set coded_frame to NULL when closing a codec, since it mightReimar Döffinger2010-05-12
| | | | | | be invalid after the codec is "gone". Originally committed as revision 23101 to svn://svn.ffmpeg.org/ffmpeg/trunk
* rename -vfilters cli option to -vfBaptiste Coudurier2010-05-12
| | | | Originally committed as revision 23100 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Do the same sign flip optimization to the low freq decoder.Michael Niedermayer2010-05-11
| | | | | | as with the high freq 10-20 cycles faster Originally committed as revision 23099 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Factorize READ_FLIP_SIGN() optimization outMichael Niedermayer2010-05-11
| | | | Originally committed as revision 23098 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Optimize decoding high freqs.Michael Niedermayer2010-05-11
| | | | | | | this is 10-20cpu cycles faster on duron (whole is about 50-60 cpu cylses) I wonder why gcc isnt doing this on its own ... Originally committed as revision 23097 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Make lsf_sf_expand() 4 times faster.Michael Niedermayer2010-05-11
| | | | Originally committed as revision 23096 to svn://svn.ffmpeg.org/ffmpeg/trunk
* float based mp1/mp2/mp3 decoders.Michael Niedermayer2010-05-11
| | | | Originally committed as revision 23095 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Set cur_channel in the AAC encoder context where needed.Alex Converse2010-05-11
| | | | | | | Most coder functions read it. Carting this around in the context may be suboptimal; a refactor should be considered. Originally committed as revision 23094 to svn://svn.ffmpeg.org/ffmpeg/trunk
* silence gcc warning about potential uninitialized usageBaptiste Coudurier2010-05-11
| | | | Originally committed as revision 23093 to svn://svn.ffmpeg.org/ffmpeg/trunk
* cosmetics, rename loop to frame_availableBaptiste Coudurier2010-05-11
| | | | Originally committed as revision 23092 to svn://svn.ffmpeg.org/ffmpeg/trunk
* rename curr_filter to last_filter, factorize filter declarationBaptiste Coudurier2010-05-11
| | | | Originally committed as revision 23091 to svn://svn.ffmpeg.org/ffmpeg/trunk
* cosmetics: indentation, whitespacesBaptiste Coudurier2010-05-11
| | | | Originally committed as revision 23090 to svn://svn.ffmpeg.org/ffmpeg/trunk
* simplify, reuse existing args variableBaptiste Coudurier2010-05-11
| | | | Originally committed as revision 23089 to svn://svn.ffmpeg.org/ffmpeg/trunk
* cosmetics: filt_graph_all -> graph, like in ffplay.cBaptiste Coudurier2010-05-11
| | | | Originally committed as revision 23088 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add -ldl to libfaadbin_extralibs instead of libfaadbin_decoder_extralibs.Janne Grunau2010-05-11
| | | | | | | The latter does not exist and thus compilation fails. patch by Janne Grunau, janne-ffmpeg jannau.net Originally committed as revision 23087 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove unused FRAC_RND() macro from mpegaudiodec.c.Michael Niedermayer2010-05-11
| | | | Originally committed as revision 23086 to svn://svn.ffmpeg.org/ffmpeg/trunk
* mlpdec: Comment channel_params field in struct SubStream.Nick Brereton2010-05-11
| | | | | | Patch by Nick Brereton <nick at nbrereton dot net> Originally committed as revision 23085 to svn://svn.ffmpeg.org/ffmpeg/trunk
* mlpdec: Allocate channel decoding parameters for each substream. Some fileNick Brereton2010-05-11
| | | | | | | | was encountered with a channel range that overlapped the previous substreams, and the code assumed no such overlap was possible. Patch by Nick Brereton <nick at nbrereton dot net> Originally committed as revision 23084 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Use int instead of long to pass width parameters in non-public functions.Ramiro Polla2010-05-11
| | | | | | | long was being incorrectly used as an x86-sized register, both for 32 and 64 bits, but this is not the case in win64. Originally committed as revision 31153 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* Adding missing () to mathops.h.Michael Niedermayer2010-05-11
| | | | Originally committed as revision 23083 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Replace more "m" constraints with MANGLE to fix compilation issuesReimar Döffinger2010-05-10
| | | | | | with x86_32 gcc 4.4.4 and -fPIC. Originally committed as revision 23082 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Optimize decodeplane32().Sebastian Vater2010-05-10
| | | | | | Patch by Sebastian Vater <cdgs basty googlemail com>. Originally committed as revision 23081 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Ensure that width and height are > 0. avcodec_open() itself only checks thatSebastian Vater2010-05-10
| | | | | | | | they are >= 0. Patch by Sebastian Vater <cdgs basty googlemail com>. Originally committed as revision 23080 to svn://svn.ffmpeg.org/ffmpeg/trunk
* FATE: print friendly error for individual tests when SAMPLES unsetMåns Rullgård2010-05-10
| | | | Originally committed as revision 23079 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Check NAL unit size to avoid reading past the buffer.Thomas Devanneaux2010-05-10
| | | | | | | | This fixes issue1907 Patch by Thomas Devanneaux gmail(thomdev) Originally committed as revision 23078 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Alloc 16 extra bytes in libavfilter frames. Needed for MMX-optimized swscale.Vitor Sessak2010-05-10
| | | | | | Fix issue 1924. Originally committed as revision 23077 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add FourCC MJPG for CODEC_ID_JPEGLS.Francesco Lavra2010-05-09
| | | | | | Patch by Francesco Lavra, francescolavra interfree it Originally committed as revision 23076 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Reorder nut specific codec tags and add a comment for marking them asStefano Sabatini2010-05-09
| | | | | | | | | | | | such. Also put the [3][0][0][0] codec tag, mapped to rgb565le, in a special section. It needs to be specified *after* the nut RGB[16] codec tag, otherwise it will be used by default when encoding normal non-flipped rgb565le, and will be decoded like a flipped format (see rawdec.c:raw_init_decoder()). Originally committed as revision 23075 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add missing nut-specific codec tags for rawvideo pixel formats.Stefano Sabatini2010-05-09
| | | | | | | | | | | | | | | | | | Add codec tags for the formats: [15]BGR Packed RGB 5:5:5, 16bpp, (msb)1A 5R 5G 5B(lsb), big-endian [NOT in AVI] [15]RGB Packed BGR 5:5:5, 16bpp, (msb)1A 5B 5G 5R(lsb), big-endian [NOT in AVI] [16]BGR Packed RGB 5:6:5, 16bpp, (msb) 5R 6G 5B(lsb), big-endian [NOT in AVI] [16]RGB Packed BGR 5:6:5, 16bpp, (msb) 5B 6G 5R(lsb), big-endian [NOT in AVI] RGBA Packed RGBA 8:8:8:8, 32bpp, RGBA [NOT in AVI] BGRA Packed RGBA 8:8:8:8, 32bpp, BGRA [NOT in AVI] ABGR Packed RGBA 8:8:8:8, 32bpp, ABGR [NOT in AVI] ARGB Packed RGBA 8:8:8:8, 32bpp, ARGB [NOT in AVI] RGB[24] Packed RGB 8:8:8, 24bpp RGB [NOT in AVI] BGR[24] Packed RGB 8:8:8, 24bpp BGR [NOT in AVI] which are listed in the nut4cc.txt spec. Originally committed as revision 23074 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Make the codec tags for the yuvjXXX pixel formats the same as theStefano Sabatini2010-05-09
| | | | | | corresponding ones for the yuvXXX pixel formats. Originally committed as revision 23073 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add support to the Y411 codec tag, corresponding to the rawvideo pixelStefano Sabatini2010-05-09
| | | | | | | | format uyyvyy411. The codec tag is referenced in fourcc.org. Originally committed as revision 23072 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Make the nut demuxer issue a more meaningful error message if itStefano Sabatini2010-05-09
| | | | | | cannot recognize the provided codec tag. Originally committed as revision 23071 to svn://svn.ffmpeg.org/ffmpeg/trunk
* bswap: 10L add missing parens around macro argsMåns Rullgård2010-05-09
| | | | Originally committed as revision 23070 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Replace usage of s->streams[0]->* with st->*, which is shorter.Sebastian Vater2010-05-09
| | | | | | Patch by Sebastian Vater <cdgs basty googlemail com>. Originally committed as revision 23069 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove "bps" parameter to decodeplane8/32(), it's unused.Sebastian Vater2010-05-09
| | | | | | Patch by Sebastian Vater <cdgs basty googlemail com>. Originally committed as revision 23068 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add entry for AVFilterPicRef interlaced and top_field_first fieldsStefano Sabatini2010-05-09
| | | | | | addition. Originally committed as revision 23067 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Bump lavfi minor after the addition of the fields interlaced andStefano Sabatini2010-05-09
| | | | | | top_field_first in AVFilterPicRef, done in r23044. Originally committed as revision 23066 to svn://svn.ffmpeg.org/ffmpeg/trunk
* qt-faststart: Avoid leaking memory if encountering a file with double ftyp atomsMartin Storsjö2010-05-09
| | | | Originally committed as revision 23065 to svn://svn.ffmpeg.org/ffmpeg/trunk
* FATE: update idroq-video-encode commandMåns Rullgård2010-05-09
| | | | Originally committed as revision 23064 to svn://svn.ffmpeg.org/ffmpeg/trunk
* IFF: decode last 8 pixels per lineMåns Rullgård2010-05-09
| | | | | | | | | | | The decodeplane8() function processes one byte of input less than it should. Also, the for loop has an unusual style with side-effects in the controlling expression; replaced with a more intuitive while loop. 10l to Basty. Originally committed as revision 23063 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix build with swscale disabledMåns Rullgård2010-05-09
| | | | Originally committed as revision 23062 to svn://svn.ffmpeg.org/ffmpeg/trunk