- 18 Aug, 2011 27 commits
-
-
Rémi Denis-Courmont authored
-
Rémi Denis-Courmont authored
-
Rémi Denis-Courmont authored
-
Rémi Denis-Courmont authored
-
Rémi Denis-Courmont authored
-
Rémi Denis-Courmont authored
-
Rémi Denis-Courmont authored
No need to invoke vlc-config to expand a shell variable.
-
Rémi Denis-Courmont authored
-
Rémi Denis-Courmont authored
-
Rémi Denis-Courmont authored
-
Rémi Denis-Courmont authored
-
Rémi Denis-Courmont authored
The lock is static anyway (and so is the data).
-
Rémi Denis-Courmont authored
This is really poor implementation, but it is not really used.
-
Rémi Denis-Courmont authored
* No recursion within the VLC threading functions. * No need to care about VLC cancellation.
-
Rémi Denis-Courmont authored
-
Rémi Denis-Courmont authored
-
Rémi Denis-Courmont authored
-
Rémi Denis-Courmont authored
The overhead is negligible, and this avoids depending on the message bank.
-
Rémi Denis-Courmont authored
This saves over 1kb in libvlccore. This object was found with: # readelf -a src/.libs/libvlccore.so | grep OBJECT
-
Rémi Denis-Courmont authored
-
Jean-Baptiste Kempf authored
Ref: #5204
-
Jean-Baptiste Kempf authored
Close #5204
-
Denis Charmet authored
As blocks are in coding orders, calling ES_OUT_SET_PCR at each blocks increase to trigger ES_OUT_RESET_PCR. The reference blocks should be in chronological order though. Acked-by: robux4 Signed-off-by: Jean-Baptiste Kempf <jb@videolan.org>
-
Denis Charmet authored
The release of the block only makes sense if the edition is ordered. Acked-by: robux4 Signed-off-by: Jean-Baptiste Kempf <jb@videolan.org>
-
Jean-Baptiste Kempf authored
-
Jean-Baptiste Kempf authored
-
Jean-Baptiste Kempf authored
-
- 17 Aug, 2011 13 commits
-
-
Rémi Denis-Courmont authored
-
Rémi Denis-Courmont authored
This is the 12-bits logarithmic found on digital magnetic tapes, also known at MIME audio/DAT12 (IETF RFC3190).
-
Rémi Denis-Courmont authored
This is also known as MIME audio/L20 (IETF RFC3190)
-
Rémi Denis-Courmont authored
-
Rémi Denis-Courmont authored
-
Rémi Denis-Courmont authored
-
Rémi Denis-Courmont authored
* Use GCC built-ins for 32-bits and 64-bits byte swap where available. * Load/store with single memcpy() instead of many byte operations. * Do not use bits operations for the local byte order. * Do not use reserved C keywords with leading underscores.
-
Rémi Denis-Courmont authored
Note that this attribute implies that the function never returns in any circumstances (it exits, it aborts or it gets cancelled). Do not use this attribute for function that do not return at the end but may return from other branches.
-
Rémi Denis-Courmont authored
This can be used as follows: #if VLC_GCC_VERSION(major,minor) ... #endif There is nothing "VLC" about it. The prefix is only about namespacing.
-
Rémi Denis-Courmont authored
-
Felix Paul Kühne authored
-
Jean-Baptiste Kempf authored
-
Felix Paul Kühne authored
-