- Mar 01, 2013
-
-
Martin Storsjö authored
This header byte is only present when actually reading a VP6 frame, not when reading the codec type field in the metadata. This potential bug has been present since 5b54a90c. CC: libav-stable@libav.org Signed-off-by:
Martin Storsjö <martin@martin.st>
-
- Feb 01, 2013
-
-
Carl Eugen Hoyos authored
Fixes ticket #2218.
-
- Nov 17, 2012
-
-
Michael Niedermayer authored
I was unable to find a file that needs this hack, if you have one please contact us! Fixes out of array accesses. Found-by: Mateusz "j00ru" Jurczyk and Gynvael Coldwind Signed-off-by:
Michael Niedermayer <michaelni@gmx.at>
-
- Nov 12, 2012
-
-
Justin Ruggles authored
-
- Oct 15, 2012
-
-
Paul B Mahol authored
Fixes null pointer dereference. Fixes CID732242. Signed-off-by:
Paul B Mahol <onemda@gmail.com>
-
- Sep 11, 2012
-
-
Anton Khirnov authored
New streams may be created at any time, e.g. on codec change.
-
- Sep 04, 2012
-
-
Martin Storsjö authored
Signed-off-by:
Martin Storsjö <martin@martin.st>
-
- Sep 02, 2012
-
-
Michael Niedermayer authored
Signed-off-by:
Michael Niedermayer <michaelni@gmx.at>
-
- Sep 01, 2012
-
-
Roman Arutyunyan authored
This fixes stream lookup in flv demuxer. When used with librtmp protocol streams are sometimes added after head arrived. If the first stream added in flv header reader is Audio stream then it is messed with Video stream added later in the code patched. The result is I have 2 Audio streams (first of them is said to have a video codec like h264) instead of Audio/Video pair. Signed-off-by:
Michael Niedermayer <michaelni@gmx.at>
-
- Aug 31, 2012
-
-
Michael Niedermayer authored
Signed-off-by:
Michael Niedermayer <michaelni@gmx.at>
-
- Aug 07, 2012
-
-
Anton Khirnov authored
-
- Aug 03, 2012
-
-
Michael Niedermayer authored
Fixed Ticket981 Signed-off-by:
Michael Niedermayer <michaelni@gmx.at>
-
Michael Niedermayer authored
Signed-off-by:
Michael Niedermayer <michaelni@gmx.at>
-
- Jul 30, 2012
-
-
Diego Biurrun authored
-
- Jul 29, 2012
-
-
Luca Barbato authored
We match streams by codec id now.
-
- Jul 05, 2012
-
-
Martin Storsjö authored
This avoids creating new AVStreams for them when switching between different variants of them, since we can handle changes between different sample rates of nellymoser within the same stream. Signed-off-by:
Martin Storsjö <martin@martin.st>
-
Luca Barbato authored
In certain conditions video or audio frames might appear way later in the stream.
-
- Jul 03, 2012
-
-
Luca Barbato authored
Codec change midstream gets mapped to a separate stream.
-
- Jun 28, 2012
-
-
Damien Fetis authored
Signed-off-by:
Luca Barbato <lu_zero@gentoo.org>
-
- Jun 19, 2012
-
-
Ronald S. Bultje authored
-
- Jun 03, 2012
-
-
Luca Barbato authored
Adobe specifies onTextData as the standard message to use to deliver text information. Signed-off-by:
Luca Barbato <lu_zero@gentoo.org>
-
- May 23, 2012
-
-
Martin Storsjö authored
The sample_rate variable is used for checks for audio format changes at the end of the function. This fixes cases where the sample rate was set from the codec id by flv_set_audio_codec (as for nellymoser 8 kHz/16 kHz), so the value set to last_sample_rate wasn't equal to sample_rate at this point. This caused the demuxer otherwise reports a spurious change to 5512 Hz and back to the correct one. Updating channels in the same way is only done for consistency. Currently, flv_set_audio_codec doesn't update that value. Signed-off-by:
Martin Storsjö <martin@martin.st>
-
- May 21, 2012
-
-
Michael Niedermayer authored
This fixes passing junk in stream. It should not have any user vissible effect. We are discarding the new data in the decoder as no case is known where it is needed but it causes problems if used. Signed-off-by:
Michael Niedermayer <michaelni@gmx.at>
-
- May 01, 2012
-
-
Reimar Döffinger authored
Signed-off-by:
Reimar Döffinger <Reimar.Doeffinger@gmx.de>
-
Reimar Döffinger authored
Signed-off-by:
Reimar Döffinger <Reimar.Doeffinger@gmx.de>
-
- Apr 16, 2012
-
-
Michael Niedermayer authored
Found-by: Mateusz "j00ru" Jurczyk and Gynvael Coldwind Signed-off-by:
Michael Niedermayer <michaelni@gmx.at>
-
- Apr 06, 2012
-
-
Martin Storsjö authored
Also add missing trailing commas, break long codec_tag lines and add spaces in codec_tag declarations. Signed-off-by:
Martin Storsjö <martin@martin.st>
-
- Mar 20, 2012
-
-
Clément Bœsch authored
Also add generated key frame in the enum, and doxycomment the existing ones. Descriptions are directly taken from the public specifications.
-
- Feb 27, 2012
-
-
Michael Niedermayer authored
The index validation identifies these indexes as broken. Signed-off-by:
Martin Storsjö <martin@martin.st>
-
Martin Storsjö authored
By validating the index entries while reading, we don't need to seek at startup to validate the entries. If the error in the index entries is not pointing to (our definition of) the start of packets, and there is an index entry pointing at some of the first packets after the metadata, the invalid index can be discarded almost immediately. Signed-off-by:
Martin Storsjö <martin@martin.st>
-
- Feb 25, 2012
-
-
Michael Niedermayer authored
Signed-off-by:
Michael Niedermayer <michaelni@gmx.at>
-
- Feb 22, 2012
-
-
Martin Storsjö authored
Signed-off-by:
Martin Storsjö <martin@martin.st>
-
Martin Storsjö authored
Also split a long line. Signed-off-by:
Martin Storsjö <martin@martin.st>
-
- Jan 31, 2012
-
-
Anton Khirnov authored
The demuxers don't use it in any way.
-
- Jan 30, 2012
-
-
Martin Storsjö authored
Previously, we've only passed the key string on to the recursive amf_parse_object for the mixedarray type, not for 'object'. By passing the key string on, the recursive amf_parse_object can store the amf objects as metadata. This kind of data was seen in data from XSplit Broadcaster, received over RTMP via Wowza. This patch allows reading this metadata. Signed-off-by:
Martin Storsjö <martin@martin.st>
-
- Jan 27, 2012
-
-
Anton Khirnov authored
-
- Jan 04, 2012
-
-
Jean First authored
These can't be used uninitialized in practice, but the compiler doesn't realize it. Signed-off-by:
Martin Storsjö <martin@martin.st>
-
- Jan 02, 2012
-
-
Jean First authored
Signed-off-by:
Jean First <jeanfirst@gmail.com> Signed-off-by:
Michael Niedermayer <michaelni@gmx.at>
-
- Dec 31, 2011
-
-
Michael Niedermayer authored
value before using its output. Signed-off-by:
Michael Niedermayer <michaelni@gmx.at>
-
- Dec 30, 2011
-
-
Michael Niedermayer authored
Idea-by: Reimar Signed-off-by:
Michael Niedermayer <michaelni@gmx.at>
-