- 16 Apr, 2012 7 commits
-
-
Justin Ruggles authored
-
Mans Rullgard authored
Without these, the expansion contains things like --1 with some compilers resulting in build errors. Signed-off-by: Mans Rullgard <mans@mansr.com>
-
Ronald S. Bultje authored
Fixes crashes when using biweight on win64.
-
Diego Biurrun authored
-
Diego Biurrun authored
-
Diego Biurrun authored
-
Anton Khirnov authored
Prevents it from referring to the rest of the list.
-
- 15 Apr, 2012 18 commits
-
-
Anton Khirnov authored
-
Anton Khirnov authored
Prevents extensive buffering when overlaying a single picture.
-
Anton Khirnov authored
-
Anton Khirnov authored
-
Anton Khirnov authored
-
Anton Khirnov authored
This is the first step towards supporting complex filtergraphs with more than one input and/or output.
-
Anton Khirnov authored
It more properly belongs to output, not input.
-
Anton Khirnov authored
Always take it from lavfi. This way we don't need a clearly defined corresponding input stream.
-
Anton Khirnov authored
This is a more proper place for them, since they store parameters of the input, not output, stream.
-
Anton Khirnov authored
-
Anton Khirnov authored
This way we don't require a clearly defined corresponding input stream. The result for the xwd test changes because rgb24 is now chosen instead of bgra.
-
Anton Khirnov authored
-
Anton Khirnov authored
Right now, they are arrays of structs, reallocated when new streams/files are added. This makes storing pointers to those structs harder than necessary.
-
Anton Khirnov authored
They are globals, no point in pretending they are not.
-
Diego Biurrun authored
Switch from changing global values to defining a separate C style and add appropriate settings for indenting assignments that span more than one line.
-
Derek Buitenhuis authored
Signed-off-by: Derek Buitenhuis <derek.buitenhuis@gmail.com>
-
Dale Curtis authored
Call mov_read_close when mov_read_header fails. Signed-off-by: Luca Barbato <lu_zero@gentoo.org>
-
Dale Curtis authored
Instead of allocating over the original, free first. MOVStreamContext is zero initialized so no double free will occur. Same style as other fixes for the same problem in this file. Signed-off-by: Dale Curtis <dalecurtis@chromium.org> Signed-off-by: Luca Barbato <lu_zero@gentoo.org>
-
- 14 Apr, 2012 14 commits
-
-
Ronald S. Bultje authored
-
Ronald S. Bultje authored
If coefficient A is 12-bits xixed-point number "X", then the other coefficient is (1 << 12) - X, not (1 << 12) - X - 1.
-
Anton Khirnov authored
The user submitted variable in this function is frame, not buf.
-
Diego Biurrun authored
-
Diego Biurrun authored
-
Mashiat Sarker Shakkhar authored
Signed-off-by: Diego Biurrun <diego@biurrun.de>
-
Mashiat Sarker Shakkhar authored
Signed-off-by: Diego Biurrun <diego@biurrun.de>
-
Mashiat Sarker Shakkhar authored
There is no point in storing the value in a variable, since it is not used anywhere else in the decoder. Signed-off-by: Diego Biurrun <diego@biurrun.de>
-
Mashiat Sarker Shakkhar authored
This is probably a leftover from WMA Pro. Signed-off-by: Diego Biurrun <diego@biurrun.de>
-
Stefano Sabatini authored
This is required for letting applications to create and destroy AVFilterInOut structs in a convenient way. Signed-off-by: Anton Khirnov <anton@khirnov.net>
-
Anton Khirnov authored
-
Anton Khirnov authored
Right now, e.g. scale,[in]overlay would connect scale to the first overlay input and [in] to the second, which goes against the documentation and is unintuitive. The bug happens because of the ordering mess in curr_inputs variable: 1) the unlabeled links from the previous filter are added to it in correct order 2) input labels are parsed and inserted to the beginning one by one (i.e. in reverse order) 3) curr_inputs is matched against filter inputs in reverse order Fix the problem by always using proper ordering without trying to be clever.
-
Anton Khirnov authored
Unlike avfilter_graph_parse(), it returns unlinked inputs and outputs to the caller, which allows parsing of graphs where inputs/outputs are not known in advance.
-
Anton Khirnov authored
-
- 13 Apr, 2012 1 commit
-
-
Ronald S. Bultje authored
Fixes bug 270.
-