- 08 Jul, 2014 1 commit
-
-
Martin Storsjö authored
This was broken (left half-implemented) in 354468fc. CC: libav-stable@libav.org Signed-off-by: Martin Storsjö <martin@martin.st>
-
- 10 Feb, 2014 1 commit
-
-
Anton Khirnov authored
-
- 11 Dec, 2013 2 commits
-
-
Anton Khirnov authored
avcodec_decode_audio4() will reset the frame itself.
-
Anton Khirnov authored
-
- 23 Nov, 2013 1 commit
-
-
Diego Biurrun authored
-
- 16 Nov, 2013 1 commit
-
-
Anton Khirnov authored
-
- 31 Oct, 2013 1 commit
-
-
Anton Khirnov authored
-
- 25 Jul, 2013 1 commit
-
-
Diego Biurrun authored
-
- 27 Apr, 2013 1 commit
-
-
Luca Barbato authored
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.
-
- 11 Apr, 2013 2 commits
-
-
Anton Khirnov authored
Removes an arbitrary hardcoded limit on the number of filters.
-
Anton Khirnov authored
We do not support using filters without AVFilterGraph in practice anyway, so there is no point in pretending we do.
-
- 19 Mar, 2013 1 commit
-
-
Anton Khirnov authored
It just shadows the corresponding AVOption and prevents using named constants.
-
- 09 Mar, 2013 1 commit
-
-
Vittorio Giovara authored
SDL 2 is API incompatible. Signed-off-by: Luca Barbato <lu_zero@gentoo.org>
-
- 08 Mar, 2013 1 commit
-
-
Anton Khirnov authored
Remove now unused cmdutils get_buffer() implementation.
-
- 09 Feb, 2013 1 commit
-
-
Vladimir Pantelic authored
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>
-
- 29 Nov, 2012 1 commit
-
-
Anton Khirnov authored
Fixes build with lavfi disabled. Signed-off-by: Diego Biurrun <diego@biurrun.de>
-
- 13 Oct, 2012 2 commits
-
-
Justin Ruggles authored
Resample to the rate that was configured in SDL.
-
Justin Ruggles authored
-
- 12 Oct, 2012 1 commit
-
-
Diego Biurrun authored
-
- 08 Oct, 2012 1 commit
-
-
Anton Khirnov authored
-
- 05 Oct, 2012 1 commit
-
-
Anton Khirnov authored
This is more consistent with what the rest of Libav does. This breaks API.
-
- 01 Oct, 2012 1 commit
-
-
Diego Elio Pettenò authored
-
- 24 Sep, 2012 1 commit
-
-
Anton Khirnov authored
-
- 11 Sep, 2012 2 commits
-
-
Anton Khirnov authored
-
Anton Khirnov authored
They have been wrong since 11d957fb
-
- 19 Aug, 2012 5 commits
-
-
Anton Khirnov authored
-
Anton Khirnov authored
-
Anton Khirnov authored
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.
-
Anton Khirnov authored
Don't require every caller to supply them.
-
Anton Khirnov authored
show_foo() functions are declared as void show_foo(void), but called as int show_foo(const char*, const char*).
-
- 08 Aug, 2012 1 commit
-
-
Konstantin Pavlov authored
Issue introduced in 67339f6e. Signed-off-by: Anton Khirnov <anton@khirnov.net>
-
- 22 Jul, 2012 1 commit
-
-
Anton Khirnov authored
-
- 08 Jul, 2012 1 commit
-
-
Justin Ruggles authored
Also make this the default value.
-
- 05 Jul, 2012 1 commit
-
-
Anton Khirnov authored
Fixes an invalid read on size change.
-
- 04 Jul, 2012 1 commit
-
-
Martin Storsjö authored
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>
-
- 03 Jul, 2012 1 commit
-
-
Luca Barbato authored
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.
-
- 30 Jun, 2012 1 commit
-
-
Martin Storsjö authored
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>
-
- 22 Jun, 2012 1 commit
-
-
Mans Rullgard authored
This reduces the dependency on unistd.h which is not available on all systems. Signed-off-by: Mans Rullgard <mans@mansr.com>
-
- 14 Jun, 2012 1 commit
-
-
Diego Biurrun authored
We generally do not declare variables within for statements and there are compilers that choke on such constructs.
-
- 05 Jun, 2012 1 commit
-
-
Anton Khirnov authored
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.
-