- 06 Jun, 2014 9 commits
-
-
Martin Storsjö authored
This was broken in 095be4fb - samples+ch (for the previous non-planar case) equals &samples_p[ch][0]. The confusion probably stemmed from the IMA WAV case where it originally was &samples[avctx->channels + ch], which was correctly changed into &samples_p[ch][1]. CC: libav-stable@libav.org Signed-off-by: Martin Storsjö <martin@martin.st>
-
Martin Storsjö authored
On big endian machines, the default value set via the faulty AVOption ended up as 2^32 times too big. This fixes the fate-lavf-ogg test which currently is broken on big endian machines, broken since 38313626. Since that commit, a final zero-sized packet is written to the ogg muxer in that test, which caused different flushing behaviour on little and big endian depending on whether the pref_duration option was handled as it should or not. CC: libav-stable@libav.org Signed-off-by: Martin Storsjö <martin@martin.st>
-
Marc-Antoine Arnaud authored
Signed-off-by: Derek Buitenhuis <derek.buitenhuis@gmail.com>
-
Marc-Antoine Arnaud authored
Signed-off-by: Derek Buitenhuis <derek.buitenhuis@gmail.com>
-
Marc-Antoine Arnaud authored
Signed-off-by: Derek Buitenhuis <derek.buitenhuis@gmail.com>
-
Marc-Antoine Arnaud authored
Signed-off-by: Derek Buitenhuis <derek.buitenhuis@gmail.com>
-
Marc-Antoine Arnaud authored
Signed-off-by: Derek Buitenhuis <derek.buitenhuis@gmail.com>
-
Martin Storsjö authored
This reduces the number of different licenses used within libav, and is preferrable since it has less ambiguous wordings than the BSD license with respect to the duties of the user of the code. Fraunhofer have now indicated that they're allowed to contribute code under this license as well. Signed-off-by: Martin Storsjö <martin@martin.st>
-
Martin Storsjö authored
The '?xyz' form is used by android devices (and according to apple mailing list archives, also by older iOS devices). The 'loci' field (defined in 3GPP 26.244) is used by recent iOS devices. Even though the loci field can contain an altitude, it was plain 0 in my sample. Just export longitude and latitude, in a string format matching the one used by the '?xyz' metadata field. Signed-off-by: Martin Storsjö <martin@martin.st>
-
- 05 Jun, 2014 1 commit
-
-
Diego Biurrun authored
-
- 04 Jun, 2014 2 commits
-
-
Luca Barbato authored
Bug-Id: 694
-
Martin Storsjö authored
This allows the caller to write all buffered data to disk, allowing the caller to know at what byte position in the file a certain packet starts (any packet written after the flush will be located after that byte position). Signed-off-by: Martin Storsjö <martin@martin.st>
-
- 03 Jun, 2014 5 commits
-
-
Janne Grunau authored
Not supported by Clang's integrated assembler. Since it just adds debug information it can safely omitted.
-
Janne Grunau authored
Move the GNU as check before the arch specific asm checks since the .dn check requires gas compatible assembler. Disable the VC-1 motion compensation NEON asm which is the only part using that directive. The integrated assembler in the upcoming clang 3.5 does not support .dn/.qn without plans to change that. Too much effort to implement it while it is rarely used. http://llvm.org/bugs/show_bug.cgi?id=18199.
-
Janne Grunau authored
Both gnu as and clang treat lines starting with '#' as comments if they aren't consumed by the C-style preprocessor. Using '//' does not work with clang since comments are removed before macro expansion.
-
Janne Grunau authored
Clang's integrated assembler does not support it.
-
Janne Grunau authored
-
- 02 Jun, 2014 2 commits
-
-
Diego Biurrun authored
Blackfin is a painful platform to work with, no test machines are available and the range of multimedia applications is dubious. Thus it only represents a maintenance burden.
-
Diego Biurrun authored
-
- 01 Jun, 2014 14 commits
-
-
Uwe L. Korn authored
In the presence of no metadata, do not set any stream flag in the FLV header but let the demuxer handle the detection and creation of streams as data arrives. Signed-off-by: Martin Storsjö <martin@martin.st>
-
Uwe L. Korn authored
Signed-off-by: Martin Storsjö <martin@martin.st>
-
Uwe L. Korn authored
If no streams were indicated in the FLV header, do not automatically allocate by default a video and an audio stream. Instead, in the case that the header did not indicate the presence of any data, allocate no stream until data actually arrives for one type. Signed-off-by: Martin Storsjö <martin@martin.st>
-
Dirk Ausserhaus authored
Signed-off-by: Kostya Shishkov <kostya.shishkov@gmail.com>
-
Dirk Ausserhaus authored
Signed-off-by: Kostya Shishkov <kostya.shishkov@gmail.com>
-
Anton Khirnov authored
-
Anton Khirnov authored
-
Anton Khirnov authored
-
Anton Khirnov authored
The other format (full flac header blocks) should not be exported by any demuxers anymore. This allows to drop an avpriv_ function and also simplify the following commits.
-
Anton Khirnov authored
-
Anton Khirnov authored
Some encoders (e.g. flac) need to send side data when there is no more data to be output. This enables them to output a packet with no data in it, only side data.
-
wm4 authored
Signed-off-by: Anton Khirnov <anton@khirnov.net>
-
wm4 authored
Signed-off-by: Anton Khirnov <anton@khirnov.net>
-
Tudor Suciu authored
Bug-Id: 695 Signed-off-by: Anton Khirnov <anton@khirnov.net>
-
- 31 May, 2014 1 commit
-
-
Martin Storsjö authored
Only copy it manually in the muxers where it makes sense (rtspenc, sapenc). Don't touch the original AVStream in movenchint, where the original AVStream should be kept untouched. This fixes the normal tracks in RTP hinted files after abb810db - the hint tracks were ok while the normal media tracks were broken, noticed by Michael Niedermayer. This reverts abb810db but achieves the same effect for the other muxers. Signed-off-by: Martin Storsjö <martin@martin.st>
-
- 30 May, 2014 2 commits
-
-
Thierry Fauck authored
CC: libav-stable@libav.org Signed-off-by: Martin Storsjö <martin@martin.st>
-
Martin Storsjö authored
While it strictly isn't necessary to copy the time base (since any use of it is scaled in ff_write_chained), it still is better to signal the actual time base to the caller, avoiding one unnecessary rescaling. This also lets the caller know what the actual internal time base is, in case that is useful info for some caller. This reverts commit 397ffde1. Signed-off-by: Martin Storsjö <martin@martin.st>
-
- 29 May, 2014 4 commits
-
-
Diego Biurrun authored
-
Diego Biurrun authored
-
Diego Biurrun authored
-
Diego Biurrun authored
-