[vlc-devel] commit: input_clock_t: fix padding. ( Rémi Duraffort )
git version control
git at videolan.org
Mon Dec 28 14:44:30 CET 2009
vlc | branch: master | Rémi Duraffort <ivoire at videolan.org> | Tue Dec 22 13:29:48 2009 +0100| [78869b0072ea638b7891fc15f9b88f30c151552e] | committer: Rémi Duraffort
input_clock_t: fix padding.
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=78869b0072ea638b7891fc15f9b88f30c151552e
---
src/input/clock.c | 10 +++++-----
1 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/src/input/clock.c b/src/input/clock.c
index a26b9c4..799b8a5 100644
--- a/src/input/clock.c
+++ b/src/input/clock.c
@@ -144,10 +144,6 @@ struct input_clock_t
/* */
vlc_mutex_t lock;
- /* Reference point */
- bool b_has_reference;
- clock_point_t ref;
-
/* Last point
* It is used to detect unexpected stream discontinuities */
clock_point_t last;
@@ -169,10 +165,14 @@ struct input_clock_t
unsigned i_index;
} late;
+ /* Reference point */
+ clock_point_t ref;
+ bool b_has_reference;
+
/* Current modifiers */
+ bool b_paused;
int i_rate;
mtime_t i_pts_delay;
- bool b_paused;
mtime_t i_pause_date;
};
More information about the vlc-devel
mailing list