- 08 Aug, 2012 36 commits
-
-
Mans Rullgard authored
This macro is only used in two places, both in libavcodec, so this is a more sensible place for it. Two small tweaks to the macro are made: - removing the trailing semicolon - dropping unnecessary 'volatile' from the x86 asm Signed-off-by: Mans Rullgard <mans@mansr.com>
-
Mans Rullgard authored
These x86-specific macros do not belong in generic code. Signed-off-by: Mans Rullgard <mans@mansr.com>
-
Mans Rullgard authored
This puts x86-specific things in the x86/ subdirectory where they belong. Signed-off-by: Mans Rullgard <mans@mansr.com>
-
Alex Converse authored
Fixes MP4 files where the first frame is broken.
-
Samuel Pitoiset authored
Signed-off-by: Martin Storsjö <martin@martin.st>
-
Martin Storsjö authored
This is basically the same way as mpegts packets are parsed in rtpdec.c. Signed-off-by: Martin Storsjö <martin@martin.st>
-
Martin Storsjö authored
EvoStream Media Server can serve data in this format, and VLC/live555 already supports it. Signed-off-by: Martin Storsjö <martin@martin.st>
-
Martin Storsjö authored
Signed-off-by: Martin Storsjö <martin@martin.st>
-
Martin Storsjö authored
Signed-off-by: Martin Storsjö <martin@martin.st>
-
Anton Khirnov authored
-
Anton Khirnov authored
It is now possible to use lavfi sources.
-
Anton Khirnov authored
-
Anton Khirnov authored
The new name is shorter and more accurate, since this variable is no longer used only for checking recording time constraint.
-
Anton Khirnov authored
-
Anton Khirnov authored
-
Anton Khirnov authored
-
Anton Khirnov authored
Operate with a pointer to InputFile instead of its index in input_files.
-
Anton Khirnov authored
Replace for (;foo == 0;) with while (!foo) This is prettier.
-
Anton Khirnov authored
This simplifies splitting code for reading from input out of transcode().
-
Anton Khirnov authored
-
Anton Khirnov authored
-
Anton Khirnov authored
Before this commit, poll_filters() reads all frames available on each lavfi output. This does not work for lavfi sources that produce an unlimited number of frames, e.g. color and similar. With this commit, poll_filters() reads from output with the lowest timestamp and returns to wait for more input if no frames are available on it.
-
Diego Biurrun authored
-
Dave Yeo authored
The a.out object format does not allow aligning sections. On OS/2 LD aligns sections to 16 bytes. Signed-off-by: Diego Biurrun <diego@biurrun.de>
-
Janne Grunau authored
Renames the old test to allow using fate-nuv as group for all nuv tests.
-
Luca Barbato authored
Set the transactionId to 0 to signal the server a return _result/_error is not expected. Solves the problems experienced with strict rtmp servers.
-
Kostya Shishkov authored
It expects maximum value to be 32767 but calculations in scale_vector() which uses this function can give it ABS(-32768) which leads to wrong result and thus clipping is needed.
-
Kostya Shishkov authored
Due to some mistake LPC vector for the first subframe was used for all subframes instead of their own LPC vectors.
-
Mohammad Alsaleh authored
id3 v2.2 uses image format ("JPG","PNG") instead of mimetypes. Currently, the attached picture is skipped because the format string does not match a known picture mimetype. This patch fixes this behaviour. Signed-off-by: Mohammad Alsaleh <msal@tormail.org> Signed-off-by: Anton Khirnov <anton@khirnov.net>
-
Konstantin Pavlov authored
Issue introduced in 67339f6e. Signed-off-by: Anton Khirnov <anton@khirnov.net>
-
Anton Khirnov authored
-
Anton Khirnov authored
-
Kostya Shishkov authored
-
Anton Khirnov authored
-
Anton Khirnov authored
It's a perfectly normal situation, nothing to spam about.
-
Anton Khirnov authored
-
- 07 Aug, 2012 4 commits
-
-
Mans Rullgard authored
This allows creating random configurations which is useful for testing purposes. Signed-off-by: Mans Rullgard <mans@mansr.com>
-
Diego Biurrun authored
-
Diego Biurrun authored
-
Mans Rullgard authored
Many compilers need special flags to compile *.h files as regular source code, if they will do so at all. Rather than hoping all compilers will have such a flag and adding mappings for it, create wrapper .c files for test building single headers. This allows using the regular rule for compiling C files without the need for special flags, and it also provides proper dependency tracking for these objects. Signed-off-by: Mans Rullgard <mans@mansr.com>
-