- 07 Nov, 2011 1 commit
-
-
Justin Ruggles authored
-
- 06 Nov, 2011 6 commits
-
-
Martin Storsjö authored
Signed-off-by:
Martin Storsjö <martin@martin.st>
-
Reimar Döffinger authored
Signed-off-by:
Martin Storsjö <martin@martin.st>
-
Reimar Döffinger authored
All current usages of it are incompatible with localization. For example strcasecmp("i", "I") != 0 is possible, but would break many of the places where it is used. Instead use our own implementations that always treat the data as ASCII. Signed-off-by:
Martin Storsjö <martin@martin.st>
-
Reimar Döffinger authored
Signed-off-by:
Martin Storsjö <martin@martin.st>
-
Luca Barbato authored
Signed-off-by:
Martin Storsjö <martin@martin.st>
-
Loren Merritt authored
We keep INIT_AVX (for backwards compatibility). 3arg AVX ops with a memory arg can only have it in src2, whereas SSE emulation of 3arg prefers to have it in src1 (i.e. the mov). So, if the op is symmetric and the wrong one is memory, swap them.
-
- 02 Nov, 2011 1 commit
-
-
Diego Biurrun authored
-
- 21 Oct, 2011 2 commits
-
-
Justin Ruggles authored
-
Ronald S. Bultje authored
-
- 19 Oct, 2011 1 commit
-
-
Anton Khirnov authored
-
- 17 Oct, 2011 2 commits
-
-
Martin Storsjö authored
With the changes in 3b3ea346, "Remove all uses of deprecated AVOptions API", av_opt_flag_is_set was broken, since it now uses av_opt_find, which doesn't return named constants unless a unit to look for the constant in is given. This broke enabling LATM encapsulated AAC output in RTP. Signed-off-by:
Martin Storsjö <martin@martin.st>
-
Anton Khirnov authored
-
- 12 Oct, 2011 10 commits
-
-
Jindrich Makovicka authored
'struct AVClass' is used in the code since 641c7afe, but AVClass is typedeffed as an anonymous struct. Signed-off-by:
Anton Khirnov <anton@khirnov.net>
-
Anton Khirnov authored
-
Anton Khirnov authored
-
Anton Khirnov authored
-
Anton Khirnov authored
Just for naming consistency, no functional changes.
-
Anton Khirnov authored
-
Anton Khirnov authored
Split actual writing to read_number() in the same way as write_number(). Allows set_string_number() to write to a caller-provided destination.
-
Anton Khirnov authored
New functions can get values from child objects, properly report error codes and have consistent naming and signatures.
-
Anton Khirnov authored
Deprecate av_set_* New functions support setting values on children, return error codes instead of options and have consistent naming and signatures.
-
Anton Khirnov authored
This will allow the caller to enumerate child contexts in a generic way and since the API is recursive, it also allows for deeper nesting (e.g. AVFormatContext->AVIOContext->URLContext) This will also allow the new setting/reading API to transparently apply to children contexts.
-
- 11 Oct, 2011 1 commit
-
-
Mans Rullgard authored
These additions might overflow the signed range for large input values. Converting to unsigned before the addition rather than after avoids such undefined behaviour. The result under normal two's complement wraparound remains unchanged. Signed-off-by:
Mans Rullgard <mans@mansr.com>
-
- 10 Oct, 2011 4 commits
-
-
Anton Khirnov authored
write_number() does the actual writing of the supplied number to destination. Move finding the option and choosing destination address out of it.
-
Anton Khirnov authored
-
Anton Khirnov authored
-
Anton Khirnov authored
Also stop attempting to honor the alloc parameter, as things break horribly in that case. It will be removed in upcoming successor to av_set_string3.
-
- 09 Oct, 2011 1 commit
-
-
Mans Rullgard authored
This fixes a signed overflow from i << 24 when i == 255 by making i unsigned. The result of the shift is already assigned to an variable of unsigned type. Signed-off-by:
Mans Rullgard <mans@mansr.com>
-
- 26 Sep, 2011 1 commit
-
-
Jason Garrett-Glaser authored
-
- 22 Sep, 2011 1 commit
-
-
Anton Khirnov authored
sqrt(-1) returns "some NaN", it's not specified which exactly.
-
- 21 Sep, 2011 1 commit
-
-
David Goldwich authored
This patch adds the possibility to calculate the DES-CBC-MAC of a source buffer (i.e. the last block of the buffer encrypted in CBC mode) without having to allocate a destination buffer that is as long as the complete source buffer, but instead only 8 bytes for the MAC. Signed-off-by:
David Goldwich <david.goldwich@gmail.com> Signed-off-by:
Anton Khirnov <anton@khirnov.net>
-
- 19 Sep, 2011 2 commits
-
-
Stefano Sabatini authored
-
Stefano Sabatini authored
-
- 11 Sep, 2011 2 commits
-
-
Stefano Sabatini authored
Signed-off-by:
Diego Biurrun <diego@biurrun.de>
-
Stefano Sabatini authored
Signed-off-by:
Diego Biurrun <diego@biurrun.de>
-
- 07 Sep, 2011 3 commits
-
-
Anton Khirnov authored
They will only ever be <=0 if the option is broken, in which case this check is hiding a bug.
-
Anton Khirnov authored
It's a hack which was created to allow for multiple options with different defaults to refer to same field (e.g. 'b' vs 'ab'). There is no need for it anymore.
-
Anton Khirnov authored
Also change it to be more readable.
-
- 03 Sep, 2011 1 commit
-
-
Anton Khirnov authored
Fixes bug 28.
-