- 11 Nov, 2011 9 commits
-
-
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 29 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>
-
Anton Khirnov authored
Signed-off-by: Martin Storsjö <martin@martin.st>
-
Anton Khirnov authored
The problem they are supposed to fix is handled in riff.c, so those hacks are pointless.
-
Anton Khirnov authored
-
Anton Khirnov authored
-
Anton Khirnov authored
-
Martin Storsjö authored
Signed-off-by: Martin Storsjö <martin@martin.st>
-
Martin Storsjö authored
Signed-off-by: Martin Storsjö <martin@martin.st>
-
Martin Storsjö authored
Signed-off-by: Martin Storsjö <martin@martin.st>
-
Martin Storsjö authored
Signed-off-by: Martin Storsjö <martin@martin.st>
-
Martin Storsjö authored
Signed-off-by: Martin Storsjö <martin@martin.st>
-
Martin Storsjö authored
Signed-off-by: Martin Storsjö <martin@martin.st>
-
Martin Storsjö authored
Signed-off-by: Martin Storsjö <martin@martin.st>
-
John Brooks authored
Signed-off-by: Ronald S. Bultje <rsbultje@gmail.com>
-
- 09 Nov, 2011 2 commits
-
-
Justin Ruggles authored
It is found in some 8svx files (e.g. ones created by SoX). Currently the decoder reuses the 8svx functions because we already have handling of a single large planar packet for the compressed 8svx codecs.
-
Justin Ruggles authored
This enables the user (i.e. avconv) to automatically convert to the supported sample format if needed.
-