- 08 Mar, 2011 8 commits
-
-
Anton Khirnov authored
Signed-off-by: Ronald S. Bultje <rsbultje@gmail.com> (cherry picked from commit 76aa876e)
-
Anton Khirnov authored
Signed-off-by: Ronald S. Bultje <rsbultje@gmail.com> (cherry picked from commit e5197539)
-
Anton Khirnov authored
It's not used anywhere and doesn't look ver useful to be public. Signed-off-by: Ronald S. Bultje <rsbultje@gmail.com> (cherry picked from commit 655e45e7)
-
Sean McGovern authored
Should an AVC-1 in MP4 stream not contain SPS or PPS NAL units, this BSF is then unable to allocate an output buffer for the modified stream. Warn that the resulting stream may be unplayable. Fix roundup issue #2386. Signed-off-by: Ronald S. Bultje <rsbultje@gmail.com> (cherry picked from commit 02dd3666)
-
Martin Storsjö authored
Signed-off-by: Luca Barbato <lu_zero@gentoo.org> (cherry picked from commit f4f4e12c)
-
Martin Storsjö authored
If this flag is set, the protocol can handle URLs where the scheme is a nested scheme such as applehttp+file: - the protocol can handle any URL where the first segment of the nested scheme belongs to this protocol. Signed-off-by: Luca Barbato <lu_zero@gentoo.org> (cherry picked from commit 8f73c060)
-
Martin Storsjö authored
Signed-off-by: Luca Barbato <lu_zero@gentoo.org> (cherry picked from commit f3bea991)
-
Mans Rullgard authored
This fixes compilation with preprocessors which do not add whitespace around replaced tokens, resulting in invalid expressions like 1--1. Signed-off-by: Mans Rullgard <mans@mansr.com>
-
- 07 Mar, 2011 5 commits
-
-
Carl Eugen Hoyos authored
Fixes the sample from issue 2649.
-
Carl Eugen Hoyos authored
-
Carl Eugen Hoyos authored
FFmpeg did not seek back to the original position, but to "0", making reading a VBR tag impossible. (issue 2645)
-
Michael Niedermayer authored
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
-
Michael Niedermayer authored
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
-
- 06 Mar, 2011 1 commit
-
-
Michael Niedermayer authored
This API is simply ridiculous. We of course keep API/ABI compatibility only useage of the worse API is reverted. This reverts commit 773947ba.
-
- 05 Mar, 2011 7 commits
-
-
Reimar Döffinger authored
Improves seeking in ffplay with http://samples.mplayerhq.hu/Matroska/RA_missing_timestamps.mkv
-
Justin Ruggles authored
Currently it is always 4, but this change will allow it to be adjusted when bandwidth-related features are added such as channel coupling, enhanced channel coupling, and spectral extension. (cherry picked from commit 53e35fd3)
-
Justin Ruggles authored
(cherry picked from commit b35743ff)
-
Anton Khirnov authored
Signed-off-by: Ronald S. Bultje <rsbultje@gmail.com> (cherry picked from commit a2704c97)
-
Anton Khirnov authored
Signed-off-by: Ronald S. Bultje <rsbultje@gmail.com> (cherry picked from commit e16ead07)
-
Reimar Döffinger authored
Signed-off-by: Ronald S. Bultje <rsbultje@gmail.com> (cherry picked from commit 41d8555f)
-
Ronald S. Bultje authored
Fixes issue 2638. (cherry picked from commit fd085bc0)
-
- 04 Mar, 2011 3 commits
-
-
Carl Eugen Hoyos authored
-
Baptiste Coudurier authored
causes problems when writing and pressing q during encoding.
-
Michael Niedermayer authored
-
- 03 Mar, 2011 16 commits
-
-
Michael Niedermayer authored
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
-
Ronald S. Bultje authored
(cherry picked from commit 8cf9a09d)
-
Mans Rullgard authored
This moves setting the thread count to a minimum of 1 to frame_thread_init(), allowing a value of zero to propagate through to the codec if frame threading is not used. This makes auto-threads work in libx264. Signed-off-by: Mans Rullgard <mans@mansr.com> (cherry picked from commit ff1efc52)
-
Baptiste Coudurier authored
Signed-off-by: Mans Rullgard <mans@mansr.com> (cherry picked from commit fb985071)
-
Martin Storsjö authored
This makes dumped packet timestamps proper for streams with timebases other than AV_TIME_BASE. Signed-off-by: Luca Barbato <lu_zero@gentoo.org> (cherry picked from commit 5e33e7bd)
-
Martin Storsjö authored
This removes a fixme issue, by allowing the av_pkt_dump functions to use the correct time base. Signed-off-by: Luca Barbato <lu_zero@gentoo.org> (cherry picked from commit 863c4716)
-
Martin Storsjö authored
In most cases, s->buf_ptr will be equal to s->buf_end when fill_buffer is called, but this may not always be the case, if we're seeking forward by reading (permitted by the short seek threshold). If fill_buffer is writing to s->buf_ptr instead of s->buf_end (when they aren't equal and s->buf_ptr is ahead of s->buffer), the data between s->buf_ptr and s->buf_end is overwritten, leading to inconsistent buffer content. This could return incorrect data if later seeking back into the area before the current s->buf_ptr. Signed-off-by: Luca Barbato <lu_zero@gentoo.org> (cherry picked from commit e360ada2)
-
Baptiste Coudurier authored
Signed-off-by: Mans Rullgard <mans@mansr.com> (cherry picked from commit 06ed4873)
-
Baptiste Coudurier authored
Signed-off-by: Mans Rullgard <mans@mansr.com> (cherry picked from commit 99bbc781)
-
Baptiste Coudurier authored
Signed-off-by: Mans Rullgard <mans@mansr.com> (cherry picked from commit fffdee89)
-
Anton Khirnov authored
avio_seek should be used instead Signed-off-by: Ronald S. Bultje <rsbultje@gmail.com> (cherry picked from commit 0300db8a)
-
Anton Khirnov authored
Signed-off-by: Ronald S. Bultje <rsbultje@gmail.com> (cherry picked from commit e356fc57)
-
Anton Khirnov authored
Signed-off-by: Ronald S. Bultje <rsbultje@gmail.com> (cherry picked from commit 6b4aa5da)
-
Alexander Strange authored
Signed-off-by: Ronald S. Bultje <rsbultje@gmail.com> (cherry picked from commit 76d8846c)
-
Alexander Strange authored
For intra codecs, ff_thread_finish_setup() is called before decoding starts automatically. However, get_buffer can only be used before it's called, so adding this requirement broke frame threading for them. Fixed by moving the call until after get_buffer is finished. Signed-off-by: Ronald S. Bultje <rsbultje@gmail.com> (cherry picked from commit ad9791e1)
-
Michael Niedermayer authored
-