Commit ba807e32 authored by Rémi Duraffort's avatar Rémi Duraffort

libvlc_priv_t: fix padding.

parent 9a634b1f
...@@ -207,15 +207,15 @@ typedef struct libvlc_priv_t ...@@ -207,15 +207,15 @@ typedef struct libvlc_priv_t
/* Messages */ /* Messages */
msg_bank_t msg_bank; ///< The message bank msg_bank_t msg_bank; ///< The message bank
int i_verbose; ///< info messages int i_verbose; ///< info messages
bool b_color; ///< color messages?
vlc_dictionary_t msg_enabled_objects; ///< Enabled objects vlc_dictionary_t msg_enabled_objects; ///< Enabled objects
bool b_color; ///< color messages?
bool msg_all_objects_enabled; ///< Should we print all objects? bool msg_all_objects_enabled; ///< Should we print all objects?
/* Timer stats */ /* Timer stats */
bool b_stats; ///< Whether to collect stats
vlc_mutex_t timer_lock; ///< Lock to protect timers vlc_mutex_t timer_lock; ///< Lock to protect timers
counter_t **pp_timers; ///< Array of all timers counter_t **pp_timers; ///< Array of all timers
int i_timers; ///< Number of timers int i_timers; ///< Number of timers
bool b_stats; ///< Whether to collect stats
/* Singleton objects */ /* Singleton objects */
module_t *p_memcpy_module; ///< Fast memcpy plugin used module_t *p_memcpy_module; ///< Fast memcpy plugin used
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment