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-12rename -vfilters cli option to -vfBaptiste Coudurier
Originally committed as revision 23100 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-05-11cosmetics, rename loop to frame_availableBaptiste Coudurier
Originally committed as revision 23092 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-05-11rename curr_filter to last_filter, factorize filter declarationBaptiste Coudurier
Originally committed as revision 23091 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-05-11cosmetics: indentation, whitespacesBaptiste Coudurier
Originally committed as revision 23090 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-05-11simplify, reuse existing args variableBaptiste Coudurier
Originally committed as revision 23089 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-05-11cosmetics: filt_graph_all -> graph, like in ffplay.cBaptiste Coudurier
Originally committed as revision 23088 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-05-07Remove messy pading hack in ffmpeg.c.Michael Niedermayer
Use avfilters if you want padding! Originally committed as revision 23050 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-05-07Make sure get_filtered_video_pic() doesnt loose interlacedframe/tff.Michael Niedermayer
Originally committed as revision 23049 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-05-07avfilter support for ffmpegMichael Niedermayer
Originally committed as revision 23043 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-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-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-22Make sure ffmpeg chooses a supported samplerte if the encoder supportsMichael Niedermayer
just some. Originally committed as revision 22943 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-04-22Fix compilation error of ffmpeg and ffplay with --disable-avdevice.Cyril Russo
Patch by Cyril Russo, stage D nexvision A laposte net Originally committed as revision 22940 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-04-20Allow setting the environment variable FFMPEG_DATADIR to locate preset files.Robert Krüger
Patch by Robert Krüger <krueger signal7 de>. Originally committed as revision 22923 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-04-17Take ticks per frame into account when warning about difference betweenBaptiste Coudurier
container and codec frame rate. Originally committed as revision 22895 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-04-05Simplify writing stream metadata.Anton Khirnov
Patch by Anton Khirnov <wyskas gmail com>. Originally committed as revision 22809 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-04-05Don't overwrite user-supplied metadata with metadata mapped from an input file.Anton Khirnov
Patch by Anton Khirnov <wyskas gmail com>. Originally committed as revision 22808 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-04-04Reindent.Stefano Sabatini
Originally committed as revision 22798 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-04-04Rename av_encode() to av_transcode(), the new name is more meaningful.Stefano Sabatini
Originally committed as revision 22797 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-04-03Use AVDISCARD_DEFAULT for 0 where appropriate.Carl Eugen Hoyos
Originally committed as revision 22787 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-04-02Implement cmdutils.c:read_file(), and use it in ffmpeg.c for readingStefano Sabatini
the second pass encoding log file. Originally committed as revision 22769 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-04-01Fix FFM-based streaming from ffmpeg to ffserver. The basic problem is thatRonald S. Bultje
we'd memset() the codec context to zero, thereby setting audio input to U8 and video to YUV420P. For most video encoders, that actually works, but for most audio codecs, it doesn't. This patch changes defaults to those set by avcodec_context_get_defaults() and have ffmpeg figure out the optimal encoding format itself if not set explicitely (as it does for the non-ffserver-cases also). Originally committed as revision 22751 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-03-31Replace all occurences of PKT_FLAG_KEY with AV_PKT_FLAG_KEY.Jean-Daniel Dupas
Patch by Jean-Daniel Dupas, devlists shadowlab org Originally committed as revision 22744 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-03-31Define AVMediaType enum, and use it instead of enum CodecType, whichStefano Sabatini
is deprecated and will be dropped at the next major bump. Originally committed as revision 22735 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-03-30Split out code that auto-chooses a default pix_fmt/sample_fmt in their ownRonald S. Bultje
functions. Originally committed as revision 22731 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-03-2010l: fix build without termios.hMåns Rullgård
Originally committed as revision 22604 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-03-19Register atexit handler only when neededMåns Rullgård
Originally committed as revision 22599 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-03-19ffmpeg.c: copy chapters by default.Anton Khirnov
Patch by Anton Khirnov wyskas gmail com Originally committed as revision 22598 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-03-16Typo: if output (video) stream's pix_fmt is not set, then the stream cannotRonald S. Bultje
be ENcoded, not DEcoded. Originally committed as revision 22566 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-03-15Allow mpeg style yuv in jpeg when strict standard compliance is small enough.Michael Niedermayer
Originally committed as revision 22553 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-03-15ffmpeg: Combine variable declaration and definitionAlexander Strange
Originally committed as revision 22537 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-03-15ffmpeg: Factor out redundant sync_ipts calculationAlexander Strange
Originally committed as revision 22536 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-03-09Move libm replacements to new header libm.hMåns Rullgård
ffmpeg.c uses lrintf(), which is missing on some systems. Previously it picked up the replacement via libavutil/internal.h due to HAVE_AV_CONFIG_H being erroneously defined. Moving these replacements to a separate header enables ffmpeg.c to use them without being exposed to internal interfaces. This use of a non-public header is justified by the header in question not being part of the internal interface either. It should rather be considered as part of the build system, which is shared between the libraries and the applications. This header cannot be installed since the tested conditions depend on the compiler. Originally committed as revision 22399 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-03-08Remove hacks not required since HAVE_AV_CONFIG_H was unset for the appsMåns Rullgård
Originally committed as revision 22295 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-03-04ffmpeg.c: Don't use NULL for integer metadata flags.Alex Converse
Originally committed as revision 22205 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-03-02Make ffmpeg print a message and abort if the name of the formatStefano Sabatini
provided with -f was unknown. Originally committed as revision 22140 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-03-01Don't let output pixel format influence input pixel format.Chris Stones
Patch by Chris Stones, chris D stones A gmail Originally committed as revision 22130 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-03-01ffmpeg: copy stream metadata.Anton Khirnov
Patch by Anton Khirnov wyskasgmailcom Originally committed as revision 22126 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-02-26Prevent overflow of start_time + recording_time.Francesco Cosoleto
Patch by Francesco Cosoleto gmail($name) Originally committed as revision 22077 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-02-24Attempt to fix issue1728 and regression of issue203Michael Niedermayer
Originally committed as revision 22011 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-02-24Set ist->pts to something that isnt guranteed to entangle itself with stream ↵Michael Niedermayer
copying b frames. Originally committed as revision 22010 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-02-23Favor streams with more packets if the user did not specify what she wants.Michael Niedermayer
Fixes issue1156 Originally committed as revision 22002 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-02-23Redesign opt_programid code.Michael Niedermayer
Its now possible to also select programs per input file and there is less code duplication. Originally committed as revision 21999 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-02-23Make -benchmark also print the maximum memory usage if possible.Reimar Döffinger
Originally committed as revision 21973 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-02-12Remove recording_time check which is no longer necessary after r21687.Wolfram Gloger
Patch by Wolfram Gloger, wmglo A dent D med D uni-muenchen D de Originally committed as revision 21760 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-02-10Use av_compare_ts to compare against the -t end time instead of usingReimar Döffinger
floating point. Should fix different results between PPC and x86 for the idroq-video-encode FATE test. Originally committed as revision 21745 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-02-08Stop reading input file when -t option value is reached.Wolfram Gloger
Patch by Wolfram Gloger wmglo (chez) dent med uni (minus) muenchen de Originally committed as revision 21687 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-02-06Revert r21615 | cehoyos | 2010-02-02 23:23:09 +0100 (Tue, 02 Feb 2010) | 5 ↵Justin Johnson
lines Guess the duration before converting video and write guessed duration into flv header. Patch by Justin Johnson, justin D johnson3 A gmail The change to ffmpeg.c is wrong as input and output files arent connected 1:1 (i seem to have missed that) Also it can segfault see ([FFmpeg-devel] rtp streaming x264+audio issues (and some ideas to fix them)) Originally committed as revision 21652 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-02-06Add parentheses in boolean expression: (A && B || C) => ((A && B) || C),Stefano Sabatini
fix the warning: ffmpeg.c: In function ‘output_packet’: ffmpeg.c:1317: warning: suggest parentheses around && within || Originally committed as revision 21650 to svn://svn.ffmpeg.org/ffmpeg/trunk