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
2013-07-25miscellaneous typo fixesDiego Biurrun
2013-04-27avplay: remove a warningLuca Barbato
Set the data field in the flush_pkt to the pointer to the actual packet. The field needs to contain a valid unique pointer, no read nor writes are ever made to it.
2013-04-11lavfi: change the filter registering system to match the other librariesAnton Khirnov
Removes an arbitrary hardcoded limit on the number of filters.
2013-04-11lavfi: merge avfiltergraph.h into avfilter.hAnton Khirnov
We do not support using filters without AVFilterGraph in practice anyway, so there is no point in pretending we do.
2013-03-19avplay: remove the -debug option.Anton Khirnov
It just shadows the corresponding AVOption and prevents using named constants.
2013-03-09avplay: enable only when SDL 1.2 is foundVittorio Giovara
SDL 2 is API incompatible. Signed-off-by: Luca Barbato <lu_zero@gentoo.org>
2013-03-08avplay: switch to new refcounted frames APIAnton Khirnov
Remove now unused cmdutils get_buffer() implementation.
2013-02-09avplay: apply the stream sample_aspect_ratio to decoded video framesVladimir Pantelic
If there is a sample_aspect_ratio in the stream, then apply it to every decoded frame in the same way as avconv does. This also makes sure that the avfilter chain has access to the aspect ratio. Signed-off-by: Vladimir Pantelic <vladoman@gmail.com> Signed-off-by: Anton Khirnov <anton@khirnov.net>
2012-11-29avplay: Do not use removed av_get_int()Anton Khirnov
Fixes build with lavfi disabled. Signed-off-by: Diego Biurrun <diego@biurrun.de>
2012-10-13avplay: support mid-stream sample rate changesJustin Ruggles
Resample to the rate that was configured in SDL.
2012-10-13avplay: use audio parameters from the decoded frame instead of AVCodecContextJustin Ruggles
2012-10-12De-doxygenize some top-level filesDiego Biurrun
2012-10-08Replace PIX_FMT_* -> AV_PIX_FMT_*, PixelFormat -> AVPixelFormatAnton Khirnov
2012-10-05lavr: change the type of the data buffers to uint8_t**.Anton Khirnov
This is more consistent with what the rest of Libav does. This breaks API.
2012-10-02Use atexit() instead of defining a custom exit_program() interface.Diego Elio Pettenò
2012-09-24Use avcodec_free_frame() to free AVFrames.Anton Khirnov
2012-09-11avplay: get rid of ugly casts in the options tableAnton Khirnov
2012-09-11avplay: fix prototypes for option callbacks.Anton Khirnov
They have been wrong since 11d957fbd81288e64408e79ed369446346000b29
2012-08-19avconv: split printing "main options" into global and per-file.Anton Khirnov
2012-08-19cmdutils: extend -h to allow printing codec details.Anton Khirnov
2012-08-19cmdutils: change semantics of show_help_options() and document it.Anton Khirnov
Currently it takes a mask and value, such that options for which (flags & mask) == value. Change it to take required flags and forbidden flags instead. This is shorter and simpler to understand.
2012-08-19avtools: move some newlines to show_help_options().Anton Khirnov
Don't require every caller to supply them.
2012-08-19avtools: fix show_foo() signatures.Anton Khirnov
show_foo() functions are declared as void show_foo(void), but called as int show_foo(const char*, const char*).
2012-08-08avplay: fix build with lavfi disabled.Konstantin Pavlov
Issue introduced in 67339f6e. Signed-off-by: Anton Khirnov <anton@khirnov.net>
2012-07-22lavfi: use avfilter_unref_bufferp() where appropriate.Anton Khirnov
2012-07-08lavr: Use AV_SAMPLE_FMT_NONE to auto-select the internal sample formatJustin Ruggles
Also make this the default value.
2012-07-05avplay: update input filter pointer when the filtergraph is reset.Anton Khirnov
Fixes an invalid read on size change.
2012-07-04avplay: Add an option for not limiting the input buffer sizeMartin Storsjö
For reading from normal files on disk, the queue limits for demuxed data work fine, but for reading data from realtime streams, they mean we're not reading from the input stream at all once the queue limit has been reached. For TCP streams, this means that writing to the socket from the peer side blocks (potentially leading to the peer dropping data), and for UDP streams it means that our kernel might drop data. For some protocols/servers, the server initially sends a large burst with data to fill client side buffers, but once filled, we should keep reading to avoid dropping data. For all realtime streams, it IMO makes sense to just buffer as much as we get (rather in buffers in avplay.c than in OS level buffers). With this option set, the input thread should always be blocking waiting for more input data, never sleeping waiting for the decoder to consume data. Signed-off-by: Martin Storsjö <martin@martin.st>
2012-07-03avplay: fix write on freed memory for rawvideoLuca Barbato
Do not assume avpacket and the decoded frames are independent. To be absolutely sure and not sprinkle av_free_packet around the code the call had been placed before getting the frame and on the error path.
2012-06-30cmdutils: Pass the actual chosen encoder to filter_codec_optsMartin Storsjö
This allows passing the right options to encoders when there's more than one encoder for a certain codec id. Signed-off-by: Martin Storsjö <martin@martin.st>
2012-06-22Replace usleep() calls with av_usleep()Mans Rullgard
This reduces the dependency on unistd.h which is not available on all systems. Signed-off-by: Mans Rullgard <mans@mansr.com>
2012-06-15Avoid C99 variable declarations within for statements.Diego Biurrun
We generally do not declare variables within for statements and there are compilers that choke on such constructs.
2012-06-05avplay: use buffersrc instead of custom input filter.Anton Khirnov
We do not allow user filters, so avtools shouldn't use them either. It also allows to reuse buffer management code from avconv, thus reducing duplication.
2012-05-09lavfi: add video buffer sink, and use it in avtoolsAnton Khirnov
Also add the public interface libavfilter/buffersink.h. Based on a commit by Stefano Sabatini.
2012-05-07avplay: properly close/reopen AVAudioResampleContext on channel layout changeJustin Ruggles
fixes Bug#280
2012-05-01avplay: use libavresample for sample format conversion and channel mixingJustin Ruggles
SDL only supports s16 sample format and a limited number of channel layouts. Some versions of SDL on some systems support 4-channel and 6-channel output, but it's safer overall to downmix any layout with more than 2 channels to stereo.
2012-04-21Remove lowres video decodingMans Rullgard
This feature is complex, of questionable utility, and slows down normal decoding. Signed-off-by: Mans Rullgard <mans@mansr.com>
2012-04-17avplay: update get_buffer to be inline with avconvLuca Barbato
The buffer must have its dimension, pixel format and aspect ratio set.
2012-04-15avconv: get output pixel format from lavfi.Anton Khirnov
This way we don't require a clearly defined corresponding input stream. The result for the xwd test changes because rgb24 is now chosen instead of bgra.
2012-04-14avfiltergraph: make the AVFilterInOut alloc/free API publicStefano Sabatini
This is required for letting applications to create and destroy AVFilterInOut structs in a convenient way. Signed-off-by: Anton Khirnov <anton@khirnov.net>
2012-04-11avplay: Don't free video filters string until the end of decoding.Alex Converse
av_freep()ing inside configure_video_filters() leaves a dangling reference in the calling code, and the filter string is needed again when reconfiguring video filters for a size change.
2012-04-06avplay: Don't try to scale timestamps if the tb isn't setMartin Storsjö
If get_filtered_video_frame failed above, tb might not be initialized at all, so don't scale using it. This fixes cases where avplay could crash if aborting avformat_find_stream_info with ctrl+c. Signed-off-by: Martin Storsjö <martin@martin.st>
2012-03-28Replace memset(0) by zero initializations.Diego Biurrun
Also remove one pointless zero initialization in rangecoder.c.
2012-02-29avplay: remove an unused variable.Anton Khirnov
2012-02-21avplay: fix -threads optionJanne Grunau
The AVOptions based default to threads auto in 2473a45c8 works only if avplay does not use custom option handling for -threads. CC: <libav-stable@libav.org>
2012-02-06avplay: reset decoder flush state when seekingJustin Ruggles
Fixes seeking after decoder has already been flushed for codecs using CODEC_CAP_DELAY.
2012-01-28avplay: use the correct array size for stride.Anton Khirnov
AV_NUM_DATA_POINTERS instead of 4.
2012-01-25Drop unnecessary prefix from *sink* variable and struct names.Diego Biurrun
2012-01-24avplay: remove the -er option.Anton Khirnov
Error recognition flags can and should be set directly with AVOptions.
2012-01-21threads: change the default for threads back to 1Janne Grunau
Using threaded decoding by default breaks backward compatibility if AVHWAccel is used or if an appliction sets threadunsafe callbacks. Avconv and avplay still use -threads auto if not specified.