- 13 Nov, 2011 7 commits
-
-
Martin Storsjö authored
Change all uses of these function to pass the relevant callback on.
-
Martin Storsjö authored
-
Martin Storsjö authored
Signed-off-by: Anton Khirnov <anton@khirnov.net>
-
Martin Storsjö authored
This is a better io interrupt callback function, which has an opaque parameter, which is given to the interrupt callback. This allows callers to precisely cancel IO for one single AVFormatContext, without interrupt other ones in the same process. Note, it's not needed in AVIOContext, at the moment. Signed-off-by: Anton Khirnov <anton@khirnov.net>
-
Luca Barbato authored
Single-quoted strings are printed verbatim in perl.
-
Luca Barbato authored
make it use the website css and start structuring it so it is consistent
-
Ronald S. Bultje authored
The issue had been introduced in c4356536Signed-off-by: Luca Barbato <lu_zero@gentoo.org>
-
- 11 Nov, 2011 17 commits
-
-
Janne Grunau authored
It does not make much sense to factor the error handling to its own av_always_inline function. Fixes "format not a string literal and no format arguments" warning in the av_log.
-
Derek Buitenhuis authored
Add a decoder for the VBLE Lossless Codec, which still has a cult following. Used to be popular several years ago on doom9. Signed-off-by: Derek Buitenhuis <derek.buitenhuis@gmail.com> Signed-off-by: Martin Storsjö <martin@martin.st>
-
Justin Ruggles authored
-
Justin Ruggles authored
-
Justin Ruggles authored
The Musepack SV7 reference encoder converts mono to stereo when encoding.
-
Justin Ruggles authored
-
Justin Ruggles authored
It is already checked in avcodec_decode_audio3()
-
Justin Ruggles authored
-
Justin Ruggles authored
This is needed because the twinvq decoder cannot rely on bit_rate to be set. The API documentation says that bit_rate is set by libavcodec, not by the user.
-
Justin Ruggles authored
It is a lossy codec with varying quantization, so bits_per_coded_sample is not applicable.
-
Justin Ruggles authored
-
Sean McGovern authored
Altivec does unaligned reads from this buffer in hscale_altivec_real(), and can thus read up to 16 bytes beyond the end of the buffer. Therefore, add an extra 16 bytes of padding at the end of the conversion buffer. This fixes fate-lavfi-pixfmts_scale on AltiVec-enabled builds under valgrind. Signed-off-by: Ronald S. Bultje <rsbultje@gmail.com>
-
John Brooks authored
Signed-off-by: Martin Storsjö <martin@martin.st>
-
Martin Storsjö authored
Tested with both Basic and Digest authentication, and tested with both proxy authentication and authentication for the requested resource at the same time. Signed-off-by: Martin Storsjö <martin@martin.st>
-
Martin Storsjö authored
The error was hidden before, to avoid showing an error on the first request where no auth has been provided, when the server indicates which authentication method to use. Now the error is printed if an authentication method was used, but failed. Signed-off-by: Martin Storsjö <martin@martin.st>
-
Anton Khirnov authored
-
Mike Melanson authored
Signed-off-by: Anton Khirnov <anton@khirnov.net>
-
- 10 Nov, 2011 16 commits
-
-
Luca Barbato authored
Update the reference to the conversion tool to use avconv and make sure the example line works as supposed. Remove the paragraph pointing to the svn repo
-
Martin Storsjö authored
Signed-off-by: Martin Storsjö <martin@martin.st>
-
Alex Converse authored
-
Alex Converse authored
-
Justin Ruggles authored
-
Justin Ruggles authored
This avoids artifically consuming a partial packet but ignoring remaining data in subsequent calls.
-
Justin Ruggles authored
also move nblocks to the local scope where it is used.
-
Justin Ruggles authored
-
Justin Ruggles authored
The decoder already skips data at the end of the packet without this. Also remove 2 APEContext fields that were only used for the end-of-frame normalization.
-
Justin Ruggles authored
-
Justin Ruggles authored
The user could provide a larger buffer, which is already checked separately before writing output.
-
Justin Ruggles authored
-
Justin Ruggles authored
-
Martin Storsjö authored
That header simply doesn't make sense in that context. Signed-off-by: Martin Storsjö <martin@martin.st>
-
Laurent Aimar authored
Signed-off-by: Janne Grunau <janne-libav@jannau.net>
-
Martin Storsjö authored
The chunksize internal variable has two different uses - for reading, it's the amount of data left of the current chunk (or -1 if the server doesn't send data in chunked mode), where it's only an internal state variable. For writing, it's used to decide whether to enable chunked encoding (by default), by using the value 0, or disable chunked encoding (value -1). This, while consistent, doesn't make much sense to expose as an AVOption. This splits the usage of the internal variable into two variables, chunksize which is used for reading (as before), and chunked_post which is the user-settable option, with the values 0 and 1, where 1 is default. Signed-off-by: Martin Storsjö <martin@martin.st>
-