- 19 Dec, 2012 7 commits
-
-
Rémi Denis-Courmont authored
The "fullscreen" variable is set by the UI. That triggers a vout control request. Then the vout thread actually switches to/from full screen mode. Setting the "fullscreen" variable again then would trigger a live loop in some circumstances, and should be useless.
-
Jean-Baptiste Kempf authored
libzvbi is LGPL :)
-
Felix Paul Kühne authored
-
Sébastien Toque authored
Signed-off-by: Rafaël Carré <funman@videolan.org>
-
Rafaël Carré authored
This will skip auto-select of libraries under the GPL
-
Jean-Baptiste Kempf authored
-
Francois Cartegnie authored
Still documents old behaviour.
-
- 18 Dec, 2012 16 commits
-
-
Rémi Denis-Courmont authored
(In practice, all of these were only used in little endian anyway.)
-
Rémi Denis-Courmont authored
-
Rémi Denis-Courmont authored
-
Rémi Denis-Courmont authored
-
Rafaël Carré authored
There is still a random offset between A/V which stays constant until there's a flush but hopefully testing should give a clue how to fix it. Note: the symbols required are present only since 2.2
-
Rémi Denis-Courmont authored
-
Rémi Denis-Courmont authored
-
Rémi Denis-Courmont authored
-
Rémi Denis-Courmont authored
-
Francois Cartegnie authored
-
Francois Cartegnie authored
-
Rémi Denis-Courmont authored
-
Rémi Denis-Courmont authored
-
Rémi Denis-Courmont authored
-
Francois Cartegnie authored
-
Jean-Baptiste Kempf authored
Close #7786
-
- 17 Dec, 2012 9 commits
-
-
Rémi Denis-Courmont authored
-
Rémi Denis-Courmont authored
-
Rémi Denis-Courmont authored
That causes some duplication, but that is required for clobber lists.
-
Jean-Baptiste Kempf authored
-
Rémi Denis-Courmont authored
-
Rémi Denis-Courmont authored
-
Rémi Denis-Courmont authored
-
Jean-Baptiste Kempf authored
-
Rafaël Carré authored
If foo[i] or bar[i_index] are used in TAB_REMOVE / TAB_FIND, they will use another variable with local scope declared inside the macro. for (int i = 0; i < 1; i++) { TAB_REMOVE( count, array, foo[i] ); } will expand to: for (int i = 0; i < 1; i++) { int i_index; ..... for (int i = 0; i < count; i++) if (array[i] == foo[i]) { index = i; break; } ..... } And inner scope i is used to index foo, instead of the outer scope i which we would expect without knowing the content of the macro.
-
- 16 Dec, 2012 8 commits
-
-
Rafaël Carré authored
link with libm, and also with libdl which is needed
-
Felix Paul Kühne authored
-
Felix Paul Kühne authored
This makes use of a 3rd party circular buffer licensed under MIT. TODO: Pause, TimeGet, Flush
-
Rémi Denis-Courmont authored
-
Rémi Denis-Courmont authored
-
Rémi Denis-Courmont authored
-
Jean-Baptiste Kempf authored
-
Rafaël Carré authored
Take in account the time elapsed since the last callback
-