[MPlayer-cvslog] r22315 - trunk/mp_core.h

uau subversion at mplayerhq.hu
Thu Feb 22 21:44:48 CET 2007


Author: uau
Date: Thu Feb 22 21:44:48 2007
New Revision: 22315

Modified:
   trunk/mp_core.h

Log:
Move some related variables together & add a comment


Modified: trunk/mp_core.h
==============================================================================
--- trunk/mp_core.h	(original)
+++ trunk/mp_core.h	Thu Feb 22 21:44:48 2007
@@ -46,9 +46,7 @@
 typedef struct MPContext {
     int osd_show_percentage;
     int osd_function;
-    demux_stream_t *d_audio;
     ao_functions_t *audio_out;
-    float begin_skip; ///< start time of the current skip while on edlout mode
     play_tree_t *playtree;
     play_tree_iter_t *playtree_iter;
     int eof;
@@ -58,6 +56,7 @@
     demuxer_t *demuxer;
     sh_audio_t *sh_audio;
     sh_video_t *sh_video;
+    demux_stream_t *d_audio;
     demux_stream_t *d_video;
     demux_stream_t *d_sub;
     mixer_t mixer;
@@ -67,6 +66,8 @@
     // struct.
     int num_buffered_frames;
 
+    float begin_skip; ///< start time of the current skip while on edlout mode
+    // audio is muted if either EDL or user activates mute
     short edl_muted; ///< Stores whether EDL is currently in muted mode.
     short user_muted; ///< Stores whether user wanted muted mode.
 



More information about the MPlayer-cvslog mailing list