- 13 Jul, 2012 2 commits
-
-
Diego Biurrun authored
-
Kostya Shishkov authored
-
- 12 Jul, 2012 2 commits
-
-
Diego Biurrun authored
-
Diego Biurrun authored
-
- 11 Jul, 2012 1 commit
-
-
Kostya Shishkov authored
-
- 10 Jul, 2012 14 commits
-
-
Jordi Ortiz authored
This makes the RTSP demuxer act as a server, listening for an incoming connection. Signed-off-by:
Martin Storsjö <martin@martin.st>
-
Jordi Ortiz authored
This is required for the upcoming RTSP listen mode. Signed-off-by:
Martin Storsjö <martin@martin.st>
-
Jordi Ortiz authored
This avoids having to add forward declarations in the following RTSP listen mode commit. Signed-off-by:
Martin Storsjö <martin@martin.st>
-
Jordi Ortiz authored
We need to support the nonstandard mode=receive, for compatibility with older libavformat clients. Signed-off-by:
Martin Storsjö <martin@martin.st>
-
Michael Niedermayer authored
Found-by: Mateusz "j00ru" Jurczyk and Gynvael Coldwind Signed-off-by:
Michael Niedermayer <michaelni@gmx.at> Signed-off-by:
Luca Barbato <lu_zero@gentoo.org>
-
Tomas Härdin authored
Signed-off-by:
Michael Niedermayer <michaelni@gmx.at> Signed-off-by:
Luca Barbato <lu_zero@gentoo.org>
-
Tomas Härdin authored
We cannot do this in general since we could be reading a file with B-frames while lacking an index. Signed-off-by:
Michael Niedermayer <michaelni@gmx.at> Signed-off-by:
Luca Barbato <lu_zero@gentoo.org>
-
Joseph Artsimovich authored
Reviewed-by:
Tomas Härdin <tomas.hardin@codemill.se> Reveiwed-by:
Baptiste Coudurier <baptiste.coudurier@gmail.com> Signed-off-by:
Michael Niedermayer <michaelni@gmx.at> Signed-off-by:
Luca Barbato <lu_zero@gentoo.org>
-
Tomas Härdin authored
This allows future assumptions to be made without affecting non-intra files. Signed-off-by:
Michael Niedermayer <michaelni@gmx.at> Signed-off-by:
Luca Barbato <lu_zero@gentoo.org>
-
Tomas Härdin authored
The "ECs != 1 -> OP1a" assumption was wrong. Luckily, the file that triggered that behavior had two ECs, not zero. Hence distinguishing between them is simple in this case. Signed-off-by:
Michael Niedermayer <michaelni@gmx.at> Signed-off-by:
Luca Barbato <lu_zero@gentoo.org>
-
Tomas Härdin authored
This fixes rare cases where OPAtom may be treated as OP1a, causing all essence to be read into RAM. Signed-off-by:
Michael Niedermayer <michaelni@gmx.at> Signed-off-by:
Luca Barbato <lu_zero@gentoo.org>
-
Philip de Nier authored
The properties of the CDCI Descriptor are insufficient to specify the pixel format for uncompressed picture data. SMPTE 377-1 and RP224v10 have defined a set of picture coding labels to indicate what formatting was used. This patch uses 2 labels to detect UYVY422 or YUYV422 pixel formats. It defaults to UYVY422 for 8-bit 4:2:2 pictures to support files that were created before the coding labels were introduced ~2008 The codec pix_fmt default was changed from 0 (PIX_FMT_YUV420P) to -1 (PIX_FMT_NONE) Reviewed-by:
Baptiste Coudurier <baptiste.coudurier@gmail.com> Signed-off-by:
Michael Niedermayer <michaelni@gmx.at>
-
Philip de Nier authored
This supports detection of uncompressed picture in files that didn't include a Picture Coding Label. The lables weren't available until SMPTE 377-1 and RP224v10 Reviewed-by:
Baptiste Coudurier <baptiste.coudurier@gmail.com> Signed-off-by:
Michael Niedermayer <michaelni@gmx.at> Signed-off-by:
Luca Barbato <lu_zero@gentoo.org>
-
Philip de Nier authored
This matches the order used for the index table edit rate. Reviewed-by:
Baptiste Coudurier <baptiste.coudurier@gmail.com> Signed-off-by:
Michael Niedermayer <michaelni@gmx.at> Signed-off-by:
Luca Barbato <lu_zero@gentoo.org>
-
- 09 Jul, 2012 2 commits
-
-
Jordi Ortiz authored
Signed-off-by:
Martin Storsjö <martin@martin.st>
-
Anton Khirnov authored
-
- 07 Jul, 2012 4 commits
-
-
Anton Khirnov authored
-
Anton Khirnov authored
Only return an error if memory allocation fails or error recognition is set to explode. Otherwise just print an error message and continue reading the file.
-
Anton Khirnov authored
This way we don't end with an invalid stream if parsing the picture fails.
-
Ronald S. Bultje authored
Also replace x>>av_log2(sizeof(..)) + 1 by x/sizeof(..). The +1 is probably meant to emulate av_log2_ceil(sizeof(..)) in cases where ".." is not a power of two.
-
- 05 Jul, 2012 2 commits
-
-
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.
-
- 04 Jul, 2012 2 commits
-
-
Ronald S. Bultje authored
MSVC gives a compile error on the tentative definition of mov_default_parse_table[].
-
Diego Biurrun authored
-
- 03 Jul, 2012 2 commits
-
-
Diego Biurrun authored
-
Luca Barbato authored
Codec change midstream gets mapped to a separate stream.
-
- 02 Jul, 2012 7 commits
-
-
Anton Khirnov authored
-
Anton Khirnov authored
-
Anton Khirnov authored
-
Anton Khirnov authored
Substract the filename size from the data size.
-
Anton Khirnov authored
-
Anton Khirnov authored
-
Kostya Shishkov authored
-
- 30 Jun, 2012 2 commits
-
-
Ronald S. Bultje authored
Mingw headers provide similar defines already (unconditional #defines, without any #undef or #ifdef around it), while MSVC doesn't have them. Signed-off-by:
Martin Storsjö <martin@martin.st>
-
Martin Storsjö authored
The fallback function is a non-static function, we shouldn't be defining non-static functions outside of the proper ff/av prefix namespaces. This is especially important for a function like poll, which other parties (other libraries, or executables linking these libraries) also might provide similar but incompatible fallbacks for. Signed-off-by:
Martin Storsjö <martin@martin.st>
-