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
2008-08-19Replace invocations of av_fifo_realloc(), which is going to beStefano Sabatini
deprecated, with corresponding invocations of av_fifo_realloc2(). Originally committed as revision 14848 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-08-15ensure we get explicit definition of various _XOPEN_SOURCE functions we useAurelien Jacobs
Originally committed as revision 14766 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-08-12align the audio decoding buffer, since some codecs write to it with simdLoren Merritt
Originally committed as revision 14707 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-08-03Increase the maximum number of supported stream mappings in ffmpeg.c.Stefano Sabatini
The new value is given by maximum_files_nb * maximum_streams_per_file_nb, which looks also more correct in respect to the previous value. Originally committed as revision 14520 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-08-03Add sample format converter to FFmpeg (adds -sample_fmt option)Peter Ross
Originally committed as revision 14512 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-07-31Add opt handler for pending "-sample_fmt" optionPeter Ross
Originally committed as revision 14486 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-07-29Make ffmpeg dump output format in case of codec type mismatch betweenStefano Sabatini
an input stream and the corresponding output stream. Originally committed as revision 14462 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-07-26add CODEC_ID_PCM_F32BE (32-bit floating point PCM big endian decoder)Peter Ross
Originally committed as revision 14409 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-07-25cosmetics: typo fixesDiego Biurrun
Originally committed as revision 14376 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-07-19Remove explicit strict_std_compliance support as it seems to work fine overMichael Niedermayer
AVOptions, actually it works even finer as it also gets passed to the decoder. Originally committed as revision 14307 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-07-19Make ffmpeg -t X with X<=0 transcode nothing.Stefano Sabatini
Originally committed as revision 14285 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-07-18Correcting displayed muxing overhead and video stream size.Michael Niedermayer
Partially fixes issue348. Originally committed as revision 14282 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-07-14-itsscale to scale timestampsMichael Niedermayer
fixes issue511 Originally committed as revision 14226 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-07-14Drop non-C99-compliant initialization.Diego Biurrun
Originally committed as revision 14224 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-07-14On EOF keep calling the decoders until they do not output anythingMichael Niedermayer
anymore, instead of just once. Originally committed as revision 14220 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-07-13Use -vsync 0 unless the user explicitly asked for somethingMichael Niedermayer
else when the framerate is above 1000. Fixes issue259. Originally committed as revision 14208 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-07-12Prevent users from setting -vol and -acodec copy together.Ramiro Polla
They are incompatible since the frames are not decoded, so they can't be preprocessed. Originally committed as revision 14178 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-07-09indentMichael Niedermayer
Originally committed as revision 14137 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-07-09Allow setting codecs through preset filesMichael Niedermayer
Originally committed as revision 14136 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-07-09Fix the av_set_string() free / alloc issue.Michael Niedermayer
Originally committed as revision 14134 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-06-27Register intrrupt_cb() early enough so we dont get stuck with tcp inputMichael Niedermayer
for example. Fixes issue66 Originally committed as revision 13992 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-06-26Remove unnecessary function opt_qdiff(), max_qdiff is set now throughStefano Sabatini
the AVOption system. Also removes the previous constraints when setting max_qdiff through opt_qdiff() (1 <= max_qdiff <= 31). Originally committed as revision 13981 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-06-25Use correct timestamp value for stream copy.Michael Niedermayer
Originally committed as revision 13963 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-06-22Cosmetics: move ffmpeg.c dframes option definition from within theStefano Sabatini
video options to the generic options where it belongs. Originally committed as revision 13893 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-06-22cosmetics, reindentBaptiste Coudurier
Originally committed as revision 13869 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-06-22enable feeder threadsBaptiste Coudurier
Originally committed as revision 13868 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-06-17Cosmetics: display ffmpeg -h generic advanced options just afterStefano Sabatini
generic non-advanced options. Originally committed as revision 13794 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-06-16Don't show advanced subtitle options within the ffmpeg -h genericStefano Sabatini
advanced options. Originally committed as revision 13779 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-06-16Don't show subtitle and grab options within the ffmpeg -h generic options.Stefano Sabatini
Originally committed as revision 13778 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-06-13Make ffmpeg.c use print_error() when it can't read an ffserver stream.Stefano Sabatini
Originally committed as revision 13761 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-06-13Improve ffmpeg error reporting in case of input/output stream mismatch,Stefano Sabatini
enabling a dump_format() of the mismatched output stream. Originally committed as revision 13760 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-06-13Make ffmpeg.c:opt_thread use parse_number_or_die().Stefano Sabatini
Originally committed as revision 13758 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-06-12Factorize options context setting.Stefano Sabatini
Patch by Stefano Sabatini stefano sabatini-lala posteit Originally committed as revision 13756 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-06-12enable stream copy with ffserver, to be able to chainBaptiste Coudurier
Originally committed as revision 13753 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-06-12set log debug when avformat debug is setBaptiste Coudurier
Originally committed as revision 13750 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-06-09remove ugly ffm_nopts hack, use AVFormatContext->timestampBaptiste Coudurier
Originally committed as revision 13718 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-06-08Support longer paths for and longer names in preset files.Michael Niedermayer
Originally committed as revision 13710 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-06-08indentMichael Niedermayer
Originally committed as revision 13709 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-06-08Search /usr(/local)/share for preset files as well.Michael Niedermayer
This also fixed a null pointer dereference if HOME isnt set. Originally committed as revision 13708 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-06-07Presets support.Michael Niedermayer
How per codec defaults and ranges will be supported is still being discussed. Originally committed as revision 13685 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-05-31Add a few newlines to 'ffmpeg -h' output to make it more readable.Stefano Sabatini
patch by Stefano Sabatini, stefano.sabatini-lala poste it Originally committed as revision 13583 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-05-31Compiling ffmpeg.c fails when when the .ffm demuxer is enabled, but the .ffmPeter Ross
muxer is disabled. The cause is an incorrect #ifdef that assumes that the ffm_nopts symbol (global define in ffmenc) is present when either ffm muxer OR demuxer is enabled. patch by Peter Ross, pross xvid org Originally committed as revision 13573 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-05-31Remove incorrect usage of av_free_static(), ffmpeg.c is not aMichael Niedermayer
windows dll which can be unloaded and loaded again. Originally committed as revision 13565 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-05-30cosmetics, space before and after parenthesis, weird indentationBaptiste Coudurier
Originally committed as revision 13539 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-05-29Remove unnecessary header #includes.Erik Hovland
Extracted from a patch by Erik Hovland, erik hovland org. Originally committed as revision 13531 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-05-29Simplify show_banner() so that it does not require arguments, similarStefano Sabatini
to what was previously done with show_version(). patch by Stefano Sabatini, stefano.sabatini-lala poste it Originally committed as revision 13526 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-05-28Slightly clarify bitstream filter help output.Stefano Sabatini
patch by Stefano Sabatini, stefano.sabatini-lala poste it Originally committed as revision 13494 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-05-28Remove coded_frame==NULL checks for video encoders.Michael Niedermayer
Originally committed as revision 13493 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-05-27use av_fifo_generic_write, old func is deprecatedBaptiste Coudurier
Originally committed as revision 13455 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-05-26Make stream copy of ac3 from riff based formats work.Michael Niedermayer
Originally committed as revision 13408 to svn://svn.ffmpeg.org/ffmpeg/trunk