- 30 Nov, 2011 1 commit
-
-
Anton Khirnov authored
This was broken in 2a651b71.
-
- 29 Nov, 2011 3 commits
-
-
Aneesh Dogra authored
Fixes : http://bugzilla.libav.org/show_bug.cgi?id=102Signed-off-by: Alex Converse <alex.converse@gmail.com>
-
Alex Converse authored
Also fix reporting of the number of samples added/dropped.
-
Aaron Colwell authored
The next call to decode() will update from an invalid index, which will either lead to a memcpy() where dest==src (2 threads), or lead to a crash (>2 threads). Signed-off-by: Ronald S. Bultje <rsbultje@gmail.com>
-
- 28 Nov, 2011 7 commits
-
-
Alex Converse authored
Inspired by work from: Michael Niedermayer <michaelni@gmx.at>. Signed-off-by: Alex Converse <alex.converse@gmail.com>
-
Alex Converse authored
-
Mans Rullgard authored
Signed-off-by: Mans Rullgard <mans@mansr.com>
-
Mans Rullgard authored
Signed-off-by: Mans Rullgard <mans@mansr.com>
-
Diego Biurrun authored
-
Kostya Shishkov authored
Signed-off-by: Diego Biurrun <diego@biurrun.de>
-
Alex Converse authored
-
- 27 Nov, 2011 12 commits
-
-
Alex Converse authored
-
Luca Barbato authored
Document it a little and possibly fix a bug in dxva2_vc1.
-
Luca Barbato authored
Use the @command{} tag when needed and cleanup the examples.
-
Aneesh Dogra authored
This fixes a crash on a corrupt bitstream (bugzilla #93). Signed-off-by: Ronald S. Bultje <rsbultje@gmail.com>
-
Vitor Sessak authored
Without this, code like "shufps m0, m1, m2, 0xaa" would not work in CPUs not supporting SSE2. Signed-off-by: Ronald S. Bultje <rsbultje@gmail.com>
-
Justin Ruggles authored
It is called once for each mpegaudio codec that is registered, which adds significant overhead.
-
Mans Rullgard authored
Using an unsigned variable avoids problems with overflows. There is further no need for a 64-bit intermediate here. Signed-off-by: Mans Rullgard <mans@mansr.com>
-
Alex Converse authored
-
Alex Converse authored
-
Kostya Shishkov authored
Interlaced videos can contain progressive frames too and now wrong scantable is selected for them. Signed-off-by: Ronald S. Bultje <rsbultje@gmail.com>
-
Victor Vasiliev authored
Signed-off-by: Ronald S. Bultje <rsbultje@gmail.com>
-
Cheng Sun authored
This fixes a compile error on mingw32 when using p->thread directly (as if it were a pointer) to track thread existence, because the type is opaque and may be a non-pointer. Signed-off-by: Ronald S. Bultje <rsbultje@gmail.com>
-
- 26 Nov, 2011 17 commits
-
-
Mans Rullgard authored
As old bits are shifted out of the accumulator, they cause signed overflows when they reach the end. Making the variable unsigned fixes this. Signed-off-by: Mans Rullgard <mans@mansr.com>
-
Mans Rullgard authored
The way these values are used, they should have an unsigned type. A similar change was made for mpegvideo in cb668476. Signed-off-by: Mans Rullgard <mans@mansr.com>
-
Mans Rullgard authored
altivec.h is no longer (indirectly) included, so this hack is not needed. Signed-off-by: Mans Rullgard <mans@mansr.com>
-
Mans Rullgard authored
Signed-off-by: Mans Rullgard <mans@mansr.com>
-
Justin Ruggles authored
It is used by the ADX decoder, and therefore needs to be exported in order to work with shared libs.
-
Justin Ruggles authored
-
Justin Ruggles authored
This simplifies the decoder so it doesn't have to process an in-packet header or handle arbitrary-sized packets. It also fixes decoding of files with large headers.
-
Justin Ruggles authored
-
Justin Ruggles authored
-
Justin Ruggles authored
-
Justin Ruggles authored
-
Justin Ruggles authored
-
Justin Ruggles authored
Instead of using fixed coefficients, the correct way is to calculate the coefficients using the highpass cutoff frequency from the ADX stream header and the sample rate.
-
Justin Ruggles authored
-
Justin Ruggles authored
-
Justin Ruggles authored
first 2 bytes are 0x80, 0x00. offset is only 16-bit. this is according to format descriptions on multimedia wiki and wikipedia.
-
Justin Ruggles authored
instead interleave channels while decoding
-