Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2010-05-01Declare myself (Alex Converse) AAC maintainer.Alex Converse
Approved by the previous maintainer Rob. Originally committed as revision 22994 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-05-01ARM: NEON optimised VP6 edge filterMåns Rullgård
Originally committed as revision 22993 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-05-01VP56: move vp56_edge_filter to new VP56DSPContextMåns Rullgård
Using macro templates allows the vp[56]_adjust functions to be inlined instead of called through function pointers. The new function pointers enable optimised implementations of the filters. 4% faster VP6 decoding on Cortex-A8. Originally committed as revision 22992 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-04-30Print warnig if requested samplingrate is unsupported.Michael Niedermayer
Originally committed as revision 22991 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-04-29bswap: add macros to byteswap constantsMåns Rullgård
The normal byteswap functions might use inline asm which is suboptimal with constants (and cannot be used in static initialisers), so special macros for constants only is needed. We should not rely on the gcc __builtin_constant_p() test since it is not always available. Originally committed as revision 22990 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-04-29vfwcap: flip RGB rawvideo.Ramiro Polla
Originally committed as revision 22989 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-04-29Fix typo.Jai Menon
Originally committed as revision 22988 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-04-29Add version to AVClass so we can add to and use fields of AVClass without ↵Michael Niedermayer
ABI issues. Originally committed as revision 22987 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-04-28Check the return value of device_try_init() immediately after calling such aLuca Abeni
function. Avoids the following warning: libavdevice/v4l2.c: In function ‘v4l2_read_header’: libavdevice/v4l2.c:586: warning: ‘codec_id’ may be used uninitialized in this function Originally committed as revision 22986 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-04-28Fix FourCC when remuxing VP6F, regression introduced in r22941.Anssi Hannula
Patch by Anssi Hannula, anssi D hannula A iki fi Originally committed as revision 22985 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-04-28Reindent after the last commit.Stefano Sabatini
Originally committed as revision 22984 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-04-28Make ffprobe show sample_aspect_ratio and display_aspect_ratio only ifStefano Sabatini
sample_aspect_ratio is known. Avoid to show bogus values, which may confuse both the human and the machine reader. Based on a patch by Robert Krüger $(echo lsvfhfs@tjhobm7.ef | tr "b-za" "a-z"). Originally committed as revision 22983 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-04-28Fix weird brace placement.Stefano Sabatini
Originally committed as revision 22982 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-04-28Drop AVERROR_NOTSUPP at the next major bump, use AVERROR(ENOSYS)Stefano Sabatini
instead which is semantically equivalent. See the thread: Subject: [FFmpeg-devel] [RFC] The meaning of AVERROR_NOTSUPP Date: Sat, 27 Mar 2010 00:51:13 +0100 Originally committed as revision 22981 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-04-28Reduce the verbosity of the v4l2 input deviceLuca Abeni
Originally committed as revision 22980 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-04-28Simplify some output messages in the v4l2 input deviceLuca Abeni
Originally committed as revision 22979 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-04-27Reindent after rr22977.Sebastian Vater
Patch by Sebastian Vater <cdgs.basty googlemail com>. Originally committed as revision 22978 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-04-27Make the IFF demuxer a little more standards-compliant, e.g. respect the sizeSebastian Vater
fields of common media header chunks (these can have different sizes depending on the type of IFF file you read), better handle odd sizes (like RIFF, every field is padded to word) and handle headerchunks after the BODY chunk. Patch by Sebastian Vater <cdgs.basty googlemail com>. Originally committed as revision 22977 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-04-27Reidnent after r22795.Sebastian Vater
Patch by Sebastian Vater <cdgs.basty googlemail com>. Originally committed as revision 22976 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-04-27Move some branches outside looped code. Should improve the generated asm (andSebastian Vater
thus performance) slightly. Patch by Sebastian Vater <cdgs.basty googlemail com>. Originally committed as revision 22975 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-04-27Switch some ints to unsigned (they can only have positive values, this allowsSebastian Vater
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
2010-04-27Make ffmpeg use print_error() to make apparent the exact cause ofStefano Sabatini
failure happened when trying to open the output file. Originally committed as revision 22973 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-04-27Make file_open() return the error code set in errno if open() fails,Stefano Sabatini
rather than always ENOENT. Originally committed as revision 22972 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-04-27Implement v4l2 input size autodetection in v4l2_read_header().Stefano Sabatini
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
2010-04-27Make two functions out of #define hackery.Sebastian Vater
Patch by Sebastian Vater, cdgs D basty A googlemail Originally committed as revision 22970 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-04-27Reindent after r22968.Ronald S. Bultje
Originally committed as revision 22969 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-04-27Write clip-related decimal numbers into hex, where they make more sense.Ronald S. Bultje
Originally committed as revision 22968 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-04-27Set ARCH=c with --disable-asm, fix buildMåns Rullgård
Originally committed as revision 22967 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-04-26Return meaningful error codes, rather than always -1.Stefano Sabatini
Originally committed as revision 22966 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-04-26Fix broken 32-bit clipping, and write numbers in hex instead of decimal soRonald S. Bultje
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
2010-04-26Make ffprobe show stream->nb_frames if that info is known.Robert Krüger
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
2010-04-25Remove unnecessary width and height variables from v4l2_read_header().Stefano Sabatini
Originally committed as revision 22963 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-04-25Make avcodec_check_dimensions() return AVERROR(EINVAL) rather than -1Stefano Sabatini
in case of invalid picture size. Originally committed as revision 22962 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-04-25Mark av_metadata_set() as deprecated, and use av_metadata_set2()Stefano Sabatini
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
2010-04-24Implement ffserver.c:report_config_error() and a macro for loggingStefano Sabatini
error messages / updating the error count. Originally committed as revision 22960 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-04-24Statically initialize ffserver.c:config_filename, simplify.Stefano Sabatini
Originally committed as revision 22959 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-04-24Consistently prefer @var{VAR} over ``VAR'' for indicating filterStefano Sabatini
parameters. Originally committed as revision 22958 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-04-244th try at getting ansi colors working with a default of color=yes_please.Michael Niedermayer
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
2010-04-23Add acelp_filters.o as QCELP decoder object file.Ronald S. Bultje
Originally committed as revision 22956 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-04-23Make WMAVoice decoder depend on DCT/RDFTRonald S. Bultje
Originally committed as revision 22955 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-04-23Workaround for missing llrintf()Måns Rullgård
Originally committed as revision 22954 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-04-23Trying _WIN32 for win32 detection.Michael Niedermayer
Originally committed as revision 22953 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-04-23Merge the 2 ANSI ESC codes.Michael Niedermayer
Originally committed as revision 22952 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-04-23Reenable ANSI colors, use method from VLC as suggested by ramiro.Michael Niedermayer
Please tell us asap if this breaks for your platform & terminal. Originally committed as revision 22951 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-04-23ac3dec: return smaller of buf_size and frame_size instead of always returningJustin Ruggles
frame_size. Originally committed as revision 22950 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-04-23ARM: fix build for darwin/iphoneMåns Rullgård
References to external symbols in asm code need prefixes. Originally committed as revision 22949 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-04-23Disable ANSI color code until we figured out how to detect ANSI support inMichael Niedermayer
the used terminal. Originally committed as revision 22948 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-04-23Disable LATM AAC in mpegts, this is not supported and produce too manyBaptiste Coudurier
bug reports. Also warn the user about it. Originally committed as revision 22947 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-04-22Coloring the log with ANSI.Michael Niedermayer
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
2010-04-22Fix off-by-1 error in the tag parsing code.Jai Menon
Originally committed as revision 22945 to svn://svn.ffmpeg.org/ffmpeg/trunk