summaryrefslogtreecommitdiff
path: root/avplay.c
Commit message (Collapse)AuthorAge
...
* Use atexit() instead of defining a custom exit_program() interface.Diego Elio Pettenò2012-10-01
|
* Use avcodec_free_frame() to free AVFrames.Anton Khirnov2012-09-24
|
* avplay: get rid of ugly casts in the options tableAnton Khirnov2012-09-11
|
* avplay: fix prototypes for option callbacks.Anton Khirnov2012-09-11
| | | | They have been wrong since 11d957fbd81288e64408e79ed369446346000b29
* avconv: split printing "main options" into global and per-file.Anton Khirnov2012-08-19
|
* cmdutils: extend -h to allow printing codec details.Anton Khirnov2012-08-19
|
* cmdutils: change semantics of show_help_options() and document it.Anton Khirnov2012-08-19
| | | | | | | | 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.
* avtools: move some newlines to show_help_options().Anton Khirnov2012-08-19
| | | | Don't require every caller to supply them.
* avtools: fix show_foo() signatures.Anton Khirnov2012-08-19
| | | | | show_foo() functions are declared as void show_foo(void), but called as int show_foo(const char*, const char*).
* avplay: fix build with lavfi disabled.Konstantin Pavlov2012-08-08
| | | | | | Issue introduced in 67339f6e. Signed-off-by: Anton Khirnov <anton@khirnov.net>
* lavfi: use avfilter_unref_bufferp() where appropriate.Anton Khirnov2012-07-22
|
* lavr: Use AV_SAMPLE_FMT_NONE to auto-select the internal sample formatJustin Ruggles2012-07-08
| | | | Also make this the default value.
* avplay: update input filter pointer when the filtergraph is reset.Anton Khirnov2012-07-05
| | | | Fixes an invalid read on size change.
* avplay: Add an option for not limiting the input buffer sizeMartin Storsjö2012-07-04
| | | | | | | | | | | | | | | | | | | | | | 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>
* avplay: fix write on freed memory for rawvideoLuca Barbato2012-07-03
| | | | | | | 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.
* cmdutils: Pass the actual chosen encoder to filter_codec_optsMartin Storsjö2012-06-30
| | | | | | | 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>
* Replace usleep() calls with av_usleep()Mans Rullgard2012-06-22
| | | | | | | This reduces the dependency on unistd.h which is not available on all systems. Signed-off-by: Mans Rullgard <mans@mansr.com>
* Avoid C99 variable declarations within for statements.Diego Biurrun2012-06-14
| | | | | We generally do not declare variables within for statements and there are compilers that choke on such constructs.
* avplay: use buffersrc instead of custom input filter.Anton Khirnov2012-06-05
| | | | | | | 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.
* lavfi: add video buffer sink, and use it in avtoolsAnton Khirnov2012-05-09
| | | | | | Also add the public interface libavfilter/buffersink.h. Based on a commit by Stefano Sabatini.
* avplay: properly close/reopen AVAudioResampleContext on channel layout changeJustin Ruggles2012-05-07
| | | | fixes Bug#280
* avplay: use libavresample for sample format conversion and channel mixingJustin Ruggles2012-05-01
| | | | | | | 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.
* Remove lowres video decodingMans Rullgard2012-04-21
| | | | | | | This feature is complex, of questionable utility, and slows down normal decoding. Signed-off-by: Mans Rullgard <mans@mansr.com>
* avplay: update get_buffer to be inline with avconvLuca Barbato2012-04-16
| | | | | The buffer must have its dimension, pixel format and aspect ratio set.
* avconv: get output pixel format from lavfi.Anton Khirnov2012-04-15
| | | | | | | 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.
* avfiltergraph: make the AVFilterInOut alloc/free API publicStefano Sabatini2012-04-14
| | | | | | | This is required for letting applications to create and destroy AVFilterInOut structs in a convenient way. Signed-off-by: Anton Khirnov <anton@khirnov.net>
* avplay: Don't free video filters string until the end of decoding.Alex Converse2012-04-11
| | | | | | 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.
* avplay: Don't try to scale timestamps if the tb isn't setMartin Storsjö2012-04-06
| | | | | | | | | | 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>
* Replace memset(0) by zero initializations.Diego Biurrun2012-03-28
| | | | Also remove one pointless zero initialization in rangecoder.c.
* avplay: remove an unused variable.Anton Khirnov2012-02-29
|
* avplay: fix -threads optionJanne Grunau2012-02-21
| | | | | | | | 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>
* avplay: reset decoder flush state when seekingJustin Ruggles2012-02-06
| | | | | Fixes seeking after decoder has already been flushed for codecs using CODEC_CAP_DELAY.
* avplay: use the correct array size for stride.Anton Khirnov2012-01-28
| | | | AV_NUM_DATA_POINTERS instead of 4.
* Drop unnecessary prefix from *sink* variable and struct names.Diego Biurrun2012-01-25
|
* avplay: remove the -er option.Anton Khirnov2012-01-24
| | | | Error recognition flags can and should be set directly with AVOptions.
* threads: change the default for threads back to 1Janne Grunau2012-01-21
| | | | | | 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.
* cosmetics: Rename ffsink to avsink.Diego Biurrun2012-01-19
|
* Fix a bunch of platform name and other typos.Diego Biurrun2012-01-11
|
* avplay: Don't call avio_set_interrupt_cb(NULL)Martin Storsjö2012-01-04
| | | | | | | | | Since we don't use avio_set_interrupt_cb for interrupt callbacks, we don't need to call it to reset the interrupt cb either. This avoids a warning about use of deprecated functions. Signed-off-by: Martin Storsjö <martin@martin.st>
* avplay: K&R cleanupAneesh Dogra2012-01-01
| | | | Signed-off-by: Anton Khirnov <anton@khirnov.net>
* cosmetics: Drop unnecessary parentheses around return values.Diego Biurrun2011-12-30
|
* lavfi: add avfilter_copy_frame_props()Stefano Sabatini2011-12-25
| | | | | avfilter_copy_frame_props() avoids code duplication and increases robustness.
* lavc: add a sample_aspect_ratio field to AVFrameStefano Sabatini2011-12-25
| | | | | | | The sample aspect ratio is a per-frame property, so it makes sense to define it in AVFrame rather than in the codec/stream context. Simplify application-level sample aspect ratio information extraction, and allow further simplifications.
* avplay: clear pkt_temp when pkt is freed.Michael Niedermayer2011-12-19
| | | | | | Signed-off-by: Michael Niedermayer <michaelni@gmx.at> Signed-off-by: Marton Balint <cus@passwd.hu> Signed-off-by: Justin Ruggles <justin.ruggles@gmail.com>
* avcodec: deprecate AVFrame.ageMans Rullgard2011-12-18
| | | | | | | | This was intended as an optimisation for skipped blocks in MPEG2 P-frames and never used elsewhere. Removing this "optimisation" speeds up MPEG2 decoding by 1-2% (ARM Cortex-A9). Signed-off-by: Mans Rullgard <mans@mansr.com>
* Replace all uses of av_close_input_file() with avformat_close_input().Anton Khirnov2011-12-12
|
* avplay: don't request a stereo downmixJustin Ruggles2011-12-11
| | | | Multi-channel output works just fine for me with SDL 1.2.14.
* avplay: use avcodec_decode_audio4()Justin Ruggles2011-12-04
|
* avplay: use a separate buffer for playing silenceJustin Ruggles2011-12-04
|
* avplay: Set the new interrupt callbackMartin Storsjö2011-11-18
| | | | Signed-off-by: Anton Khirnov <anton@khirnov.net>