summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAge
* Move some branches outside looped code. Should improve the generated asm (andSebastian Vater2010-04-26
| | | | | | | | thus performance) slightly. Patch by Sebastian Vater <cdgs.basty googlemail com>. Originally committed as revision 22975 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Switch some ints to unsigned (they can only have positive values, this allowsSebastian Vater2010-04-26
| | | | | | | | | | | | compiler to optimize some math from mul/div to shr/shl). Also add a cast to uint32_t when calling decodeplane32(), this silences a compiler warning. Lastly, in decodeplane8/32(), flatten a double-loop into a single-loop and calculate the length once before entering the loop instead of during every iteration (since it doesn't change). Patch by Sebastian Vater <cdgs.basty googlemail com>. Originally committed as revision 22974 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Make ffmpeg use print_error() to make apparent the exact cause ofStefano Sabatini2010-04-26
| | | | | | failure happened when trying to open the output file. Originally committed as revision 22973 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Make file_open() return the error code set in errno if open() fails,Stefano Sabatini2010-04-26
| | | | | | rather than always ENOENT. Originally committed as revision 22972 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Implement v4l2 input size autodetection in v4l2_read_header().Stefano Sabatini2010-04-26
| | | | | | | | | Move check on frame size after the device is opened and after device_try_init() is attempted. If the provided size value is 0x0, perform a VIDIOC_G_FMT ioctl() on the device, which sets size to the current settings. Originally committed as revision 22971 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Make two functions out of #define hackery.Sebastian Vater2010-04-26
| | | | | | Patch by Sebastian Vater, cdgs D basty A googlemail Originally committed as revision 22970 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Reindent after r22968.Ronald S. Bultje2010-04-26
| | | | Originally committed as revision 22969 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Write clip-related decimal numbers into hex, where they make more sense.Ronald S. Bultje2010-04-26
| | | | Originally committed as revision 22968 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Set ARCH=c with --disable-asm, fix buildMåns Rullgård2010-04-26
| | | | Originally committed as revision 22967 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Return meaningful error codes, rather than always -1.Stefano Sabatini2010-04-26
| | | | Originally committed as revision 22966 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix broken 32-bit clipping, and write numbers in hex instead of decimal soRonald S. Bultje2010-04-26
| | | | | | | they are easier to understand. Also give the add a 'u' postfix to silence a pre-c99 compiler warning. Originally committed as revision 22965 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Make ffprobe show stream->nb_frames if that info is known.Robert Krüger2010-04-25
| | | | | | Patch by Robert Krüger $(echo kru3g3r@signal7.d3 | sed -e 's/3/e/g'). Originally committed as revision 22964 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove unnecessary width and height variables from v4l2_read_header().Stefano Sabatini2010-04-25
| | | | Originally committed as revision 22963 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Make avcodec_check_dimensions() return AVERROR(EINVAL) rather than -1Stefano Sabatini2010-04-25
| | | | | | in case of invalid picture size. Originally committed as revision 22962 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Mark av_metadata_set() as deprecated, and use av_metadata_set2()Stefano Sabatini2010-04-25
| | | | | | | | in its place. av_metadata_set() is going to be dropped at the next major bump. Originally committed as revision 22961 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Implement ffserver.c:report_config_error() and a macro for loggingStefano Sabatini2010-04-24
| | | | | | error messages / updating the error count. Originally committed as revision 22960 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Statically initialize ffserver.c:config_filename, simplify.Stefano Sabatini2010-04-24
| | | | Originally committed as revision 22959 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Consistently prefer @var{VAR} over ``VAR'' for indicating filterStefano Sabatini2010-04-24
| | | | | | parameters. Originally committed as revision 22958 to svn://svn.ffmpeg.org/ffmpeg/trunk
* 4th try at getting ansi colors working with a default of color=yes_please.Michael Niedermayer2010-04-23
| | | | | | Colors will only be used if the TERM env var is set and NO_COLOR is not set. Originally committed as revision 22957 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add acelp_filters.o as QCELP decoder object file.Ronald S. Bultje2010-04-23
| | | | Originally committed as revision 22956 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Make WMAVoice decoder depend on DCT/RDFTRonald S. Bultje2010-04-23
| | | | Originally committed as revision 22955 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Workaround for missing llrintf()Måns Rullgård2010-04-23
| | | | Originally committed as revision 22954 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Trying _WIN32 for win32 detection.Michael Niedermayer2010-04-23
| | | | Originally committed as revision 22953 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Merge the 2 ANSI ESC codes.Michael Niedermayer2010-04-23
| | | | Originally committed as revision 22952 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Reenable ANSI colors, use method from VLC as suggested by ramiro.Michael Niedermayer2010-04-23
| | | | | | Please tell us asap if this breaks for your platform & terminal. Originally committed as revision 22951 to svn://svn.ffmpeg.org/ffmpeg/trunk
* ac3dec: return smaller of buf_size and frame_size instead of always returningJustin Ruggles2010-04-22
| | | | | | frame_size. Originally committed as revision 22950 to svn://svn.ffmpeg.org/ffmpeg/trunk
* ARM: fix build for darwin/iphoneMåns Rullgård2010-04-22
| | | | | | References to external symbols in asm code need prefixes. Originally committed as revision 22949 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Disable ANSI color code until we figured out how to detect ANSI support inMichael Niedermayer2010-04-22
| | | | | | the used terminal. Originally committed as revision 22948 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Disable LATM AAC in mpegts, this is not supported and produce too manyBaptiste Coudurier2010-04-22
| | | | | | bug reports. Also warn the user about it. Originally committed as revision 22947 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Coloring the log with ANSI.Michael Niedermayer2010-04-22
| | | | | | | | Ive checked this on black and white background and found no problem in terms of readability. flames welcome. Originally committed as revision 22946 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix off-by-1 error in the tag parsing code.Jai Menon2010-04-22
| | | | Originally committed as revision 22945 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Set .supported_samplerates for mpeg audio encoders.Michael Niedermayer2010-04-22
| | | | Originally committed as revision 22944 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Make sure ffmpeg chooses a supported samplerte if the encoder supportsMichael Niedermayer2010-04-22
| | | | | | just some. Originally committed as revision 22943 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Made FLIC demuxer capable of handling the videos from "X-COM: Terror from ↵Tomas Härdin2010-04-22
| | | | | | the Deep". Originally committed as revision 22942 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Support VP6F in Matroska.Christian Schmidt2010-04-22
| | | | | | Patch by Christian Schmidt, schmidt digadd de Originally committed as revision 22941 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix compilation error of ffmpeg and ffplay with --disable-avdevice.Cyril Russo2010-04-22
| | | | | | Patch by Cyril Russo, stage D nexvision A laposte net Originally committed as revision 22940 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Do not initialize res in url_fseek(), in the case !s->seek directlyStefano Sabatini2010-04-21
| | | | | | | | return AVERROR(EPIPE) rather than the pre-defined value of res. Slightly improve readability. Originally committed as revision 22939 to svn://svn.ffmpeg.org/ffmpeg/trunk
* WMAVoice postfilter.Ronald S. Bultje2010-04-21
| | | | Originally committed as revision 22938 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Move clipping of audio samples (for those codecs outputting float) from decoderRonald S. Bultje2010-04-21
| | | | | | to the audio conversion routines. Originally committed as revision 22937 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix typo.Jai Menon2010-04-21
| | | | Originally committed as revision 22936 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Implement QCELP postfilter.Ronald S. Bultje2010-04-21
| | | | Originally committed as revision 22935 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Make the Sipr16k postfilter function write data into the target/output buffer.Ronald S. Bultje2010-04-21
| | | | Originally committed as revision 22934 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Split input/output data arguments to ff_acelp_apply_order_2_transfer_function().Ronald S. Bultje2010-04-21
| | | | Originally committed as revision 22933 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Split the input/output data arguments to ff_adaptive_gain_control().Ronald S. Bultje2010-04-21
| | | | Originally committed as revision 22932 to svn://svn.ffmpeg.org/ffmpeg/trunk
* theora: coeff huffman codes are allowed to be up to 32 bits long (for 32 tokens)David Conrad2010-04-21
| | | | Originally committed as revision 22931 to svn://svn.ffmpeg.org/ffmpeg/trunk
* 10l: do not try to unpack DTX frames in AMR-NB decoderVitor Sessak2010-04-21
| | | | Originally committed as revision 22930 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix MTV decoding on big-endian systemsVitor Sessak2010-04-21
| | | | Originally committed as revision 22929 to svn://svn.ffmpeg.org/ffmpeg/trunk
* mov: Read QuickTime chaptersDavid Conrad2010-04-21
| | | | Originally committed as revision 22928 to svn://svn.ffmpeg.org/ffmpeg/trunk
* movenc: Write nero chaptersDavid Conrad2010-04-21
| | | | Originally committed as revision 22927 to svn://svn.ffmpeg.org/ffmpeg/trunk
* seems aac gets screwed up by the parser so disable itBaptiste Coudurier2010-04-20
| | | | Originally committed as revision 22926 to svn://svn.ffmpeg.org/ffmpeg/trunk