summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAge
* PPC: fix asm operand constraints in AV_RL64Måns Rullgård2009-07-29
| | | | | | The target register of first word loaded must be marked early-clobber. Originally committed as revision 19536 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove pointless '#ifdef DEBUG' around dprintf macro.Diego Biurrun2009-07-29
| | | | Originally committed as revision 19535 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Only enable WMV3 decoder when it has been turned on in the build system.Diego Biurrun2009-07-29
| | | | Originally committed as revision 19534 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Do not check for both CONFIG_VC1_DECODER and CONFIG_WMV3_DECODER,Diego Biurrun2009-07-29
| | | | | | the former depends upon the latter. Originally committed as revision 19533 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Do not check for both CONFIG_VC1_VDPAU_DECODER and CONFIG_WMV3_VDPAU_DECODER,Diego Biurrun2009-07-29
| | | | | | the former depends upon the latter. Originally committed as revision 19532 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Do not check for CONFIG_VC1_VAAPI_HWACCEL, the file is onlyDiego Biurrun2009-07-29
| | | | | | compiled if that condition is true. Originally committed as revision 19531 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Stop parsing in read_header only after finding pmt, andBaptiste Coudurier2009-07-29
| | | | | | | do not close pat filter so further pmt can be parsed. Fix issue #1294. Originally committed as revision 19530 to svn://svn.ffmpeg.org/ffmpeg/trunk
* rename freq to period which is more correct, patch by Niobos, niobos dot be ↵Niobos2009-07-28
| | | | | | at gmail dot com Originally committed as revision 19529 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Use dprintf() instead of '#ifdef DEBUG' and av_log().Diego Biurrun2009-07-28
| | | | Originally committed as revision 19528 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Replace BUILD_{SHARED,STATIC} with CONFIG_ counterpartsMåns Rullgård2009-07-28
| | | | Originally committed as revision 19527 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Enable PIC unconditionally on OpenBSDMåns Rullgård2009-07-28
| | | | Originally committed as revision 19526 to svn://svn.ffmpeg.org/ffmpeg/trunk
* configure: always write PIC flags to config.makMåns Rullgård2009-07-28
| | | | Originally committed as revision 19525 to svn://svn.ffmpeg.org/ffmpeg/trunk
* configure: enable PIC in per-arch section instead of separatelyMåns Rullgård2009-07-28
| | | | Originally committed as revision 19524 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix typo in MinGWCE support in configure.Martin Storsjö2009-07-28
| | | | | | Patch by Martin Storsjö and Måns. Originally committed as revision 19523 to svn://svn.ffmpeg.org/ffmpeg/trunk
* MMX2 scaler: Remove {} block leftover from factorization in initMMX2Scaler().Ramiro Polla2009-07-28
| | | | | | Merge variable declarations to previous {} block and indent. Originally committed as revision 29454 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* MMX2 scaler: factorize initMMX2Scaler().Ramiro Polla2009-07-28
| | | | Originally committed as revision 29453 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* MMX2 scaler: add variable to ease factorization of initMMX2Scaler().Ramiro Polla2009-07-28
| | | | Originally committed as revision 29452 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* Indent.Ramiro Polla2009-07-28
| | | | Originally committed as revision 29451 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* Remove duplicate horizontal scaling when there aren't enough lines in a sliceRamiro Polla2009-07-28
| | | | | | to output the dstY line. Originally committed as revision 29450 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* Remove useless code.Ramiro Polla2009-07-28
| | | | | | flags can never be any other kind of scaling algorithm inside this if(). Originally committed as revision 29449 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* ARM: cleaner selection of ELF-spefic assembler directivesMåns Rullgård2009-07-27
| | | | Originally committed as revision 19522 to svn://svn.ffmpeg.org/ffmpeg/trunk
* MinGWCE support in configure; networking is disabled for now.Martin Storsjö2009-07-27
| | | | | | patch by Martin Storsjö, martin martin st and Ismail Dönmez, ismail namtrac org Originally committed as revision 19521 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove disabled function get_num().Diego Biurrun2009-07-27
| | | | | | It is small and has been disabled and unused for more than four years. Originally committed as revision 19520 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Cosmetics: remove spaces between function name and arguments in declaration,Ronald S. Bultje2009-07-27
| | | | | | and put return type ("static void") on the same line as function name. Originally committed as revision 19519 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Use named initializers and use new/free_context() instead of extradata()Colin McQuillan2009-07-27
| | | | | | for context allocators. Patch by Colin McQuillan m niloc googlemail com. Originally committed as revision 19518 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Implement support for EOS as used by WMS and other RTSP servers that do notRonald S. Bultje2009-07-27
| | | | | | | implement RTCP/bye. See "[PATCH] rtsp.c: EOS support" thread from a few months back. Originally committed as revision 19517 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Implement RTSP-MS/ASF packet parsing - this completes RTSP-MS support. SeeRonald S. Bultje2009-07-27
| | | | | | discussion in "[PATCH] RTSP-MS 14/15: ASF packet parsing" thread on mailinglist. Originally committed as revision 19516 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Change type of received_sigterm variable from sig_atomic_t to int,Martin Storsjö2009-07-27
| | | | | | | which is more portable (works on Windows CE). patch by Martin Storsjö, martin martin st Originally committed as revision 19515 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Conditionally compile ELF-specific ARM assembly bits that fail on Windows CE.Martin Storsjö2009-07-27
| | | | | | patch by Martin Storsjö, martin martin st Originally committed as revision 19514 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Only consider -1 as an error return value for open().Martin Storsjö2009-07-27
| | | | | | | | | | This is: - what Posix says (-1 on error, >=0 on success) - fixing a bug on winCE (<0 sometimes) Patch by Martin Storsjö: martin martin st Originally committed as revision 19513 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Do not misuse HAVE_ defines. Introduce COMPILE_TEMPLATE_ defines and use themRamiro Polla2009-07-27
| | | | | | instead. Originally committed as revision 29446 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* Factorize x86 fast_bilinear assembly.Ramiro Polla2009-07-27
| | | | Originally committed as revision 29445 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* Fix assembly comments for x86 fast_bilinear so they match the C code.Ramiro Polla2009-07-27
| | | | Originally committed as revision 29444 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* Set subtitle type in DVD and XSUB subtitle decoders.Janne Grunau2009-07-26
| | | | | | Patch by Janne Grunau <ja?ne-f?mpeg jannau net>. Originally committed as revision 19512 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove unnecessary mpeg12data.o entries from OBJS- variables.Diego Biurrun2009-07-26
| | | | Originally committed as revision 19511 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove duplicated mpeg12data.o entries.Diego Biurrun2009-07-26
| | | | Originally committed as revision 19510 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add handling of EAGAIN at packet boundaries. See "[PATCH] RTSP-MS 14/15:Ronald S. Bultje2009-07-26
| | | | | | ASF packet parsing" thread for discussion / reasoning. Originally committed as revision 19509 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Replace WORDS_BIGENDIAN with HAVE_BIGENDIANMåns Rullgård2009-07-26
| | | | Originally committed as revision 29439 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* Replace WORDS_BIGENDIAN with HAVE_BIGENDIANMåns Rullgård2009-07-26
| | | | Originally committed as revision 19508 to svn://svn.ffmpeg.org/ffmpeg/trunk
* fix various compilation dependenciesAurelien Jacobs2009-07-24
| | | | Originally committed as revision 19507 to svn://svn.ffmpeg.org/ffmpeg/trunk
* fix compilation of cavsvideo demuxerAurelien Jacobs2009-07-24
| | | | Originally committed as revision 19506 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Check for HAVE_ISATTY.Martin Storsjö2009-07-24
| | | | | | Patch by Martin Storsjö <martin at martin dot st> Originally committed as revision 19505 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Check for the isatty function.Martin Storsjö2009-07-24
| | | | | | Patch by Martin Storsjö <martin at martin dot st> Originally committed as revision 19504 to svn://svn.ffmpeg.org/ffmpeg/trunk
* configure: some small simplificationsMåns Rullgård2009-07-23
| | | | Originally committed as revision 19503 to svn://svn.ffmpeg.org/ffmpeg/trunk
* configure: add some blank lines to improve readabilityMåns Rullgård2009-07-23
| | | | Originally committed as revision 19502 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove unnecessary #include <unistd.h>Måns Rullgård2009-07-23
| | | | Originally committed as revision 29437 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* refactoring: properly separate AC-3 and E-AC-3 codeDiego Biurrun2009-07-23
| | | | Originally committed as revision 19501 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Make sure that eac3_decoder only gets enabled when CONFIG_EAC3_DECODER is set.Diego Biurrun2009-07-23
| | | | Originally committed as revision 19500 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove useless #include <unistd.h> from many filesMåns Rullgård2009-07-22
| | | | Originally committed as revision 19499 to svn://svn.ffmpeg.org/ffmpeg/trunk
* cosmetics: Reorder some tables/lines to make future diffs smaller.Diego Biurrun2009-07-22
| | | | Originally committed as revision 19498 to svn://svn.ffmpeg.org/ffmpeg/trunk