1
0
mirror of https://github.com/mpv-player/mpv synced 2024-12-12 09:56:30 +00:00

fixed some doxygen comments, patch by Oded Shimon

git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@13859 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
reynaldo 2004-11-03 00:08:03 +00:00
parent eeb78020b6
commit abd3866bfd

View File

@ -356,13 +356,13 @@ static char* rtc_device;
#endif
#ifdef USE_EDL
edl_record_ptr edl_records = NULL; /// EDL entries memory area
edl_record_ptr next_edl_record = NULL; /// only for traversing edl_records
int edl_memory_slots = 0; /// number of EDL entries (1 for skip + 2 for each mute)
int edl_operations = 0; /// number of EDL operations, skip + mute
short edl_decision = 0; /// 1 when an EDL operation has been made
FILE* edl_fd = NULL; /// fd to write to when in -edlout mode
int edl_mute_count = 0; /// even number when mute and unmute has been matched
edl_record_ptr edl_records = NULL; ///< EDL entries memory area
edl_record_ptr next_edl_record = NULL; ///< only for traversing edl_records
int edl_memory_slots = 0; ///< number of EDL entries (1 for skip + 2 for each mute)
int edl_operations = 0; ///< number of EDL operations, skip + mute
short edl_decision = 0; ///< 1 when an EDL operation has been made
FILE* edl_fd = NULL; ///< fd to write to when in -edlout mode
int edl_mute_count = 0; ///< even number when mute and unmute has been matched
#endif
static unsigned int inited_flags=0;