summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAge
* Use a wildcard match instead of a list to remove test programs.Diego Biurrun2009-03-26
| | | | | | | This is robust against renames and also removes test programs not (yet) hooked up in the main Makefiles. Originally committed as revision 18193 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Use intptr_t when casting pointers to int.Ramiro Polla2009-03-26
| | | | Originally committed as revision 18192 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Move yuv2rgb code to subdirs.Ramiro Polla2009-03-26
| | | | Originally committed as revision 29063 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* Create swscale subdirs for out-of-tree builds.Ramiro Polla2009-03-26
| | | | Originally committed as revision 18191 to svn://svn.ffmpeg.org/ffmpeg/trunk
* fft-test does not depend on fdctref.o.Diego Biurrun2009-03-25
| | | | Originally committed as revision 18190 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Move adding the '-test$(EXESUF)' suffix to test programs into common.mak.Diego Biurrun2009-03-25
| | | | Originally committed as revision 18189 to svn://svn.ffmpeg.org/ffmpeg/trunk
* prettyprinting cosmeticsDiego Biurrun2009-03-25
| | | | Originally committed as revision 18188 to svn://svn.ffmpeg.org/ffmpeg/trunk
* swscale-example is an API example, not a test program.Diego Biurrun2009-03-25
| | | | Originally committed as revision 29056 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* cosmetics: Group all path variables together in config.mak.Diego Biurrun2009-03-25
| | | | Originally committed as revision 18187 to svn://svn.ffmpeg.org/ffmpeg/trunk
* typo: beomes --> becomesDiego Biurrun2009-03-25
| | | | Originally committed as revision 18186 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Move licensing information into a separate file called LICENSE andDiego Biurrun2009-03-25
| | | | | | rewrite it for greater clarity in the process. Originally committed as revision 18185 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Clarify that our LGPL/GPL licenses come with an explicit "or later" clause.Diego Biurrun2009-03-25
| | | | Originally committed as revision 18184 to svn://svn.ffmpeg.org/ffmpeg/trunk
* The Mersenne Twister PRNG was removed, mention replacement.Diego Biurrun2009-03-25
| | | | Originally committed as revision 18183 to svn://svn.ffmpeg.org/ffmpeg/trunk
* cosmetics: Reformat paragraphs and other cosmetic changes.Diego Biurrun2009-03-25
| | | | Originally committed as revision 18182 to svn://svn.ffmpeg.org/ffmpeg/trunk
* set wrong_dts for iMovie created files which has huge ctts delay, fix ↵Baptiste Coudurier2009-03-25
| | | | | | ffmpeg_sample.m4v Originally committed as revision 18181 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Clear some more variables that are used on subdir Makefiles.Ramiro Polla2009-03-25
| | | | Originally committed as revision 18180 to svn://svn.ffmpeg.org/ffmpeg/trunk
* cosmetics: add an @return to documentation for decode_frame_header()Justin Ruggles2009-03-24
| | | | Originally committed as revision 18179 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add _XOPEN_SOURCE #define. This is necessary for (s)random(), which are XSIDiego Biurrun2009-03-24
| | | | | | extensions of POSIX. Avoids implicit declaration warnings on some systems. Originally committed as revision 18178 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Adds "YUYV422 to YUVA420P" and "UYVY422 to YUVA420P" unscaled convertionCédric Schieli2009-03-24
| | | | Originally committed as revision 29048 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* Fix some places where "non-alpha to YUVA420P" do not fill the alpha planeCédric Schieli2009-03-24
| | | | Originally committed as revision 29047 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* Simpler and more elegant fix to the x86_32/OSX+PIC build failureCédric Schieli2009-03-24
| | | | Originally committed as revision 29046 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* strchr(string, '\0') returns non-NULL, and is thus not suited for use inRonald S. Bultje2009-03-24
| | | | | | | | | redir_isspace(char) to check if '\0' is a space or not. Therefore, we now use memchr(), since then we can give the length of the string (i.e. the length excluding the terminating '\0'). Fixes issue 919, see also the follow-ups in the "[PATCH] rtsp.c small cleanups" mailinglist thread. Originally committed as revision 18177 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Update apiexample.c to use the newer avcodec_decode_audio2() API. This alsoRobert Swain2009-03-24
| | | | | | fixes compilation. Originally committed as revision 18176 to svn://svn.ffmpeg.org/ffmpeg/trunk
* flacdec: split frame header decoding and validation into a separateJustin Ruggles2009-03-24
| | | | | | function Originally committed as revision 18175 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Use PIX_FMT_NE() for defining the PIX_FMT_RGB32 variants macros.Stefano Sabatini2009-03-23
| | | | Originally committed as revision 18174 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Make the PIX_FMT_NE() macro more generic.Stefano Sabatini2009-03-23
| | | | Originally committed as revision 18173 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add MPEG-2 bitstream decoding through VA API.Gwenole Beauchesne2009-03-23
| | | | Originally committed as revision 18172 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Move declaration of 'pict' closer to where it is used and initialize it.avcoder2009-03-23
| | | | | | Patch by avcoder: gmail(ffmpeg) Originally committed as revision 18171 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Move av_class to AVResampleContext instead of ReSampleContext.Benoit Fouet2009-03-23
| | | | | | Fixes issue 852. Originally committed as revision 18170 to svn://svn.ffmpeg.org/ffmpeg/trunk
* AAC: Ignore cc_domain for independent (time domain) coupling.Alex Converse2009-03-23
| | | | Originally committed as revision 18169 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add pcxenc.o to the $OBJS list, it was erroneously removed from it inStefano Sabatini2009-03-22
| | | | | | | r18164. Fix compilation. Originally committed as revision 18168 to svn://svn.ffmpeg.org/ffmpeg/trunk
* flacdec: cosmetics: white spaceJustin Ruggles2009-03-22
| | | | Originally committed as revision 18167 to svn://svn.ffmpeg.org/ffmpeg/trunk
* flacdec: cosmetics: separate the pure frame header parsing code fromJustin Ruggles2009-03-22
| | | | | | other frame header decoding code Originally committed as revision 18166 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Rename 'tests' target to 'testprogs'. It is too easily confused with theDiego Biurrun2009-03-22
| | | | | | 'test' target and a directory named tests exists. Originally committed as revision 29039 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* Rename 'tests' target to 'testprogs'. It is too easily confused with theDiego Biurrun2009-03-22
| | | | | | 'test' target and a directory named tests exists. Originally committed as revision 18165 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove unnecessary CLEANFILES declaration. Test programs do not require it.Diego Biurrun2009-03-22
| | | | Originally committed as revision 29038 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* Split AVCodec declarations for PAM/PBM/PGM/PGMYUV/PPM decoders and encodersDiego Biurrun2009-03-22
| | | | | | so that they can be enabled and disabled individually. Originally committed as revision 18164 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Make the pixel formats which were defined as macros:Stefano Sabatini2009-03-22
| | | | | | | | | | | | | | | | | | | | | | PIX_FMT_ARGB PIX_FMT_RGBA PIX_FMT_ABGR PIX_FMT_BGRA defined as enum PixelFormat values, and viceversa make: PIX_FMT_RGB32 PIX_FMT_RGB32_1 PIX_FMT_BGR32 PIX_FMT_BGR32_1 defined as macros, also resort accordingly the enum PixelFormat list. Also make avcodec_get_pix_fmt() recognize the "rgb32" and "bgr32" aliases, in order to make ffmpeg pass regressions test. This change breaks ABI backward compatibility. Originally committed as revision 18163 to svn://svn.ffmpeg.org/ffmpeg/trunk
* flacdec: allow sample rate to change mid-stream, but log a warningJustin Ruggles2009-03-22
| | | | | | message when it does Originally committed as revision 18162 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add rule for building API example programs.Diego Biurrun2009-03-22
| | | | Originally committed as revision 18161 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Factorize: use the X_NE() macro in avcodec_get_pix_fmt().Stefano Sabatini2009-03-22
| | | | Originally committed as revision 18160 to svn://svn.ffmpeg.org/ffmpeg/trunk
* flacdec: cosmetics: indentationJustin Ruggles2009-03-22
| | | | Originally committed as revision 18159 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Implement X_NE() macro.Stefano Sabatini2009-03-22
| | | | Originally committed as revision 18158 to svn://svn.ffmpeg.org/ffmpeg/trunk
* flacdec: change frame bps validation to return an error value if bpsJustin Ruggles2009-03-22
| | | | | | changes since this is not currently supported by the decoder. Originally committed as revision 18157 to svn://svn.ffmpeg.org/ffmpeg/trunk
* flacdec: cosmetics: add some braces to if/else statementsJustin Ruggles2009-03-22
| | | | Originally committed as revision 18156 to svn://svn.ffmpeg.org/ffmpeg/trunk
* flacdec: skip frame when allocated data size is too smallJustin Ruggles2009-03-22
| | | | Originally committed as revision 18155 to svn://svn.ffmpeg.org/ffmpeg/trunk
* 10l: don't check against current layout until after validating ch_mode.Justin Ruggles2009-03-22
| | | | | | should have been in last commit. Originally committed as revision 18154 to svn://svn.ffmpeg.org/ffmpeg/trunk
* flacdec: give a more accurate error message when validating channelJustin Ruggles2009-03-22
| | | | | | layout. differentiates between invalid values and unsupported values. Originally committed as revision 18153 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Export to pixdesc.h the av_pix_fmt_descriptors array.Stefano Sabatini2009-03-22
| | | | Originally committed as revision 18152 to svn://svn.ffmpeg.org/ffmpeg/trunk
* flacdec: move data size check to flac_decode_frame()Justin Ruggles2009-03-22
| | | | Originally committed as revision 18151 to svn://svn.ffmpeg.org/ffmpeg/trunk