- 06 Aug, 2015 20 commits
-
-
Francois Cartegnie authored
-
Francois Cartegnie authored
-
Francois Cartegnie authored
-
Francois Cartegnie authored
-
Francois Cartegnie authored
-
Francois Cartegnie authored
-
Francois Cartegnie authored
-
Francois Cartegnie authored
-
Francois Cartegnie authored
-
Francois Cartegnie authored
-
Francois Cartegnie authored
Red over blue was against usability rules
-
Francois Cartegnie authored
-
Francois Cartegnie authored
Closed captions are in the same SEI user sections as H264 according to the spec.
-
Francois Cartegnie authored
-
Francois Cartegnie authored
-
Francois Cartegnie authored
-
Francois Cartegnie authored
-
David Fuhrmann authored
No functional changes.
-
David Fuhrmann authored
-
David Fuhrmann authored
-
- 05 Aug, 2015 20 commits
-
-
Francois Cartegnie authored
-
Francois Cartegnie authored
-
Francois Cartegnie authored
-
Francois Cartegnie authored
-
Rémi Denis-Courmont authored
-
Rémi Denis-Courmont authored
-
Rémi Denis-Courmont authored
In real use, there are few (typically only zero or one) listeners per event type. In this case, the linear search through the listener groups was actually slower than the linear search through the whole list of listeners: it required one iteration per event type, even for event types with no listeners. (Note: using a hash table over the event type would make a lot more sense as an optimization.)
-
Rémi Denis-Courmont authored
-
Rémi Denis-Courmont authored
The distinction was rather vain, as the inner lock was almost never held without the outer lock. The only case was adding an event callback (but _not_ removing one). On the other hand, the distinction required extra heap manipulations and memory copying for each event.
-
Rémi Denis-Courmont authored
-
Rémi Denis-Courmont authored
This fixes excessive (and dumb) usage of thread local variables, and invalid use of thread cancellation.
-
Rémi Denis-Courmont authored
This avoids using the buggy asynchronous event queue. This does NOT solve other existing races and dead locks in the media list player.
-
Rémi Denis-Courmont authored
-
Rémi Denis-Courmont authored
As of a2ab8b27, there is always a media player underneath the media list player.
-
Francois Cartegnie authored
Setting up font name can't't force font type since monotype font switch isn't handled by renderer.
-
Francois Cartegnie authored
fixes the second line background alignment which is always wrong.
-
Rémi Denis-Courmont authored
-
Rémi Denis-Courmont authored
-
Rémi Denis-Courmont authored
All objects with a pointer back to the instance ought to retain a reference to it (which currently means pretty much all objects).
-
Rémi Denis-Courmont authored
The following functions are not marked LIBVLC_API and are not in the public header files (for a reason): - libvlc_event_manager_new(), - libvlc_event_manager_register_event_type() and - libvlc_event_manager_release(). There wer no reasons to have them in the symbols list.
-