summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAge
* Use '#include <poll.h>' instead of '#include <sys/poll.h>'.Diego Biurrun2008-08-14
| | | | | | It is the standard location as defined by the Open Group. Originally committed as revision 14761 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add an example of higher resolution video encoding for the PSP to the FAQ.Daniel Serpell2008-08-14
| | | | | | patch by Daniel Serpell, dserpell gmail com Originally committed as revision 14760 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix the PSP examples in the FAQ to use libx264 as codec instead of h264.Daniel Serpell2008-08-14
| | | | | | patch by Daniel Serpell, dserpell gmail com Originally committed as revision 14759 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add declarations for the sine tables used in wma.c (half window sizes: 128,Robert Swain2008-08-14
| | | | | | | 256, 512, 1024 and 2048) to mdct.c. Make them accessible via dsputil.h. Make wma.c use these shared tables. Originally committed as revision 14758 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Change wma.c to use the ff_sine_window_init() from mdct.cRobert Swain2008-08-14
| | | | Originally committed as revision 14757 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Surround '#include <sys/select>' by HAVE_SYS_SELECT_H.Kurtnoise2008-08-14
| | | | | | patch by Kurtnoise, kurtnoise free fr Originally committed as revision 14756 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Check for sys/select.h and poll.h unconditionally, not just if ffserverDiego Biurrun2008-08-14
| | | | | | is enabled. The headers are used throughout the code. Originally committed as revision 14755 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add -D_POSIX_C_SOURCE=200112 to cflags.Michael Niedermayer2008-08-14
| | | | Originally committed as revision 14754 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Change Dirac in MPEG-TS encapsulation to conform with spec changes.Anuradha Suraparaju2008-08-14
| | | | | | patch by Anuradha Suraparaju, anuradha rd.bbc.co uk Originally committed as revision 14753 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Okayed parts of AAC encoderKostya Shishkov2008-08-14
| | | | Originally committed as revision 14752 to svn://svn.ffmpeg.org/ffmpeg/trunk
* file which should have been added in r14749Loren Merritt2008-08-14
| | | | Originally committed as revision 14751 to svn://svn.ffmpeg.org/ffmpeg/trunk
* missing prototypeLoren Merritt2008-08-14
| | | | Originally committed as revision 14750 to svn://svn.ffmpeg.org/ffmpeg/trunk
* gcc chokes on the 7 registers needed for float_to_int16_interleave6 (even ↵Loren Merritt2008-08-14
| | | | | | inside HAVE_7REGS), so write it in yasm Originally committed as revision 14749 to svn://svn.ffmpeg.org/ffmpeg/trunk
* gcc chokes on xmm constraints, so pessimize int32_to_float_fmul_scalar_sse a ↵Loren Merritt2008-08-14
| | | | | | little Originally committed as revision 14748 to svn://svn.ffmpeg.org/ffmpeg/trunk
* mlp: split simple inline function that xors 4 bytes into one.Ramiro Polla2008-08-14
| | | | Originally committed as revision 14747 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Do not fill the pts reordering buffer with guessed dts.Michael Niedermayer2008-08-14
| | | | | | | | | | These values should not matter at all in principle because they do not correspond to the time of display of any frame but it seems ffmpeg becomes confused by them if they are far off and its not strictly correct to set them to guessed values. Fixes video_stalls_at_start.wmv Originally committed as revision 14746 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove unneeded whitespace and quotes from -D_ISOC99_SOURCE.Michael Niedermayer2008-08-14
| | | | Originally committed as revision 14745 to svn://svn.ffmpeg.org/ffmpeg/trunk
* special case 6 channel version of float_to_int16_interleaveLoren Merritt2008-08-13
| | | | | | 5% faster ac3 Originally committed as revision 14744 to svn://svn.ffmpeg.org/ffmpeg/trunk
* simd int->floatLoren Merritt2008-08-13
| | | | | | 20% faster ac3 if downmixing, 15% if not Originally committed as revision 14743 to svn://svn.ffmpeg.org/ffmpeg/trunk
* simd downmixLoren Merritt2008-08-13
| | | | | | 13% faster ac3 if downmixing Originally committed as revision 14742 to svn://svn.ffmpeg.org/ffmpeg/trunk
* don't mark the delayed samples for upmixing if they haven't been downmixedLoren Merritt2008-08-13
| | | | Originally committed as revision 14741 to svn://svn.ffmpeg.org/ffmpeg/trunk
* oops, non-normalized downmix to mono contaminated add_bias for non-simd ↵Loren Merritt2008-08-13
| | | | | | float-to-int. Originally committed as revision 14740 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Change _ISOC9X_SOURCE to _ISOC99_SOURCE.Michael Niedermayer2008-08-13
| | | | Originally committed as revision 14739 to svn://svn.ffmpeg.org/ffmpeg/trunk
* matroskadec: list some more ebml IDs found in the wild and that we ignoreAurelien Jacobs2008-08-13
| | | | | | | This avoid printing some warnings about unknow IDs while we in fact know the IDs but just want to knowingly ignore them. Originally committed as revision 14738 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Make show_banner() and show_version() print both the compile-time and theStefano Sabatini2008-08-13
| | | | | | link-time/run-time libav* version numbers. Originally committed as revision 14737 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add examples in documentation showing how to avoid to decode audio andErwan Ducroquet2008-08-13
| | | | | | | output video in pass 1 for 2-pass encoding. Patch by Erwan Ducroquet erwan _dot_ ducroquet _at_ gmail _dot_ com Originally committed as revision 14736 to svn://svn.ffmpeg.org/ffmpeg/trunk
* mlp: Cosmetics: Close comments in an extra line andRamiro Polla2008-08-13
| | | | | | remove empty lines between doxy comments and function declarations. Originally committed as revision 14735 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Dirac encapsulation in MPEG-TSAnuradha Suraparaju2008-08-13
| | | | | | patch by Anuradha Suraparaju, anuradha rd.bbc.co uk Originally committed as revision 14734 to svn://svn.ffmpeg.org/ffmpeg/trunk
* mlp: Split common code from parser and decoder to be used by encoder.Ramiro Polla2008-08-13
| | | | Originally committed as revision 14733 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove unused variable.Diego Biurrun2008-08-13
| | | | Originally committed as revision 14732 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove unused variable.Diego Biurrun2008-08-13
| | | | Originally committed as revision 14731 to svn://svn.ffmpeg.org/ffmpeg/trunk
* 10000l, revert mistakely commited and unrelated hunk.Michael Niedermayer2008-08-13
| | | | Originally committed as revision 14730 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Move -D_ISOC9X_SOURCE to configure so its available to all tests.Michael Niedermayer2008-08-13
| | | | Originally committed as revision 14729 to svn://svn.ffmpeg.org/ffmpeg/trunk
* strcasecmp() requires #include <strings.h>Aurelien Jacobs2008-08-13
| | | | Originally committed as revision 14728 to svn://svn.ffmpeg.org/ffmpeg/trunk
* move M_PI definition along with other math definitionsAurelien Jacobs2008-08-13
| | | | Originally committed as revision 14727 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Show result of yasm test.Carl Eugen Hoyos2008-08-13
| | | | Originally committed as revision 14726 to svn://svn.ffmpeg.org/ffmpeg/trunk
* define some math constants so as not to depend on _XOPEN_SOURCEAurelien Jacobs2008-08-13
| | | | Originally committed as revision 14725 to svn://svn.ffmpeg.org/ffmpeg/trunk
* ffserver: SA_RESTART and unsetenv require _XOPEN_SOURCEAurelien Jacobs2008-08-13
| | | | Originally committed as revision 14724 to svn://svn.ffmpeg.org/ffmpeg/trunk
* matroskadec: parse available blocks even when cluster parsing failedAurelien Jacobs2008-08-13
| | | | | | | This way, we still read the few complete blocks out of a truncated cluster at the end of a truncated file. Originally committed as revision 14723 to svn://svn.ffmpeg.org/ffmpeg/trunk
* mlp_parser: Initialize crc data in its own function.Ramiro Polla2008-08-13
| | | | Originally committed as revision 14722 to svn://svn.ffmpeg.org/ffmpeg/trunk
* mlpdec: Put some doxy comments to the right of vars instead of interleaved.Ramiro Polla2008-08-13
| | | | Originally committed as revision 14721 to svn://svn.ffmpeg.org/ffmpeg/trunk
* mlpdec: Split channel parameters from context into their own struct.Ramiro Polla2008-08-13
| | | | Originally committed as revision 14720 to svn://svn.ffmpeg.org/ffmpeg/trunk
* optimize ac3_downmix.Loren Merritt2008-08-12
| | | | | | 1.3x faster 5.1->stereo, 1.9x faster 5.1->mono. Originally committed as revision 14719 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add needed include, make it compile without -D_BSD_SOURCE.Michael Niedermayer2008-08-12
| | | | Originally committed as revision 14718 to svn://svn.ffmpeg.org/ffmpeg/trunk
* mlpdec: whitespace and line-breaking cosmetics.Ramiro Polla2008-08-12
| | | | Originally committed as revision 14717 to svn://svn.ffmpeg.org/ffmpeg/trunk
* mlpdec: Split filter parameters from context into their own struct.Ramiro Polla2008-08-12
| | | | Originally committed as revision 14716 to svn://svn.ffmpeg.org/ffmpeg/trunk
* increase MAX_REORDER_DELAY and pts_buffer size to 16, max for h264 atmBaptiste Coudurier2008-08-12
| | | | Originally committed as revision 14715 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Prevent dts generation code to be executed when delay is > MAX_REORDER_DELAY,Baptiste Coudurier2008-08-12
| | | | | | this fixes overflow in AVStream->pts_buffer. Originally committed as revision 14714 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Electronic Arts demuxer: support SxEN audio tags found in 'Need for Speed: ↵Peter Ross2008-08-12
| | | | | | Pro Street' computer game. Originally committed as revision 14713 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix CODEC_ID_PCM_U8 decoder output size calculation to support odd-number of ↵Peter Ross2008-08-12
| | | | | | samples. Originally committed as revision 14712 to svn://svn.ffmpeg.org/ffmpeg/trunk