2 * This file is part of MPlayer.
4 * MPlayer is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License as published by
6 * the Free Software Foundation; either version 2 of the License, or
7 * (at your option) any later version.
9 * MPlayer is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
14 * You should have received a copy of the GNU General Public License along
15 * with MPlayer; if not, write to the Free Software Foundation, Inc.,
16 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
25 char *edl_filename
; // file to extract EDL entries from (-edl)
26 char *edl_output_filename
; // file to put EDL entries in (-edlout)
29 * Allocates a new EDL record and makes sure allocation was successful.
31 * \return New allocated EDL record.
32 * \brief Allocate new EDL record
35 static edl_record_ptr
edl_alloc_new(edl_record_ptr next_edl_record
)
37 edl_record_ptr new_record
= calloc(1, sizeof(struct edl_record
));
39 mp_tmsg(MSGT_CPLAYER
, MSGL_FATAL
, "Can't allocate enough memory to hold EDL data.\n");
43 if (next_edl_record
) // if this isn't the first record, tell the previous one what the new one is.
44 next_edl_record
->next
= new_record
;
45 new_record
->prev
= next_edl_record
;
46 new_record
->next
= NULL
;
52 * Goes through entire EDL records and frees all memory.
53 * Assumes next_edl_record is valid or NULL.
55 * \brief Free EDL memory
58 void free_edl(edl_record_ptr next_edl_record
)
61 while (next_edl_record
) {
62 tmp
= next_edl_record
->next
;
63 free(next_edl_record
);
64 next_edl_record
= tmp
;
68 /** Parses edl_filename to fill EDL operations queue.
69 * Prints out how many EDL operations recorded total.
70 * \brief Fills EDL operations queue.
73 edl_record_ptr
edl_parse_file(void)
81 edl_record_ptr edl_records
= NULL
;
82 edl_record_ptr next_edl_record
= NULL
;
86 if ((fd
= fopen(edl_filename
, "r")) == NULL
)
91 while (fgets(line
, 99, fd
) != NULL
)
95 if ((sscanf(line
, "%f %f %d", &start
, &stop
, &action
))
98 mp_tmsg(MSGT_CPLAYER
, MSGL_WARN
, "Badly formatted EDL line [%d], discarding.\n",
103 if (next_edl_record
&& start
<= next_edl_record
->stop_sec
)
105 mp_tmsg(MSGT_CPLAYER
, MSGL_WARN
, "Invalid EDL line: %s\n", line
);
106 mp_tmsg(MSGT_CPLAYER
, MSGL_WARN
,
107 "Last stop position was [%f]; next start is [%f].\n"\
108 "Entries must be in chronological order, cannot overlap. Discarding.\n",
109 next_edl_record
->stop_sec
, start
);
115 mp_tmsg(MSGT_CPLAYER
, MSGL_WARN
, "Invalid EDL line: %s\n",
117 mp_tmsg(MSGT_CPLAYER
, MSGL_WARN
, "Stop time has to be after start time.\n");
121 next_edl_record
= edl_alloc_new(next_edl_record
);
123 if (!edl_records
) edl_records
= next_edl_record
;
125 next_edl_record
->action
= action
;
127 if (action
== EDL_MUTE
)
129 next_edl_record
->length_sec
= 0;
130 next_edl_record
->start_sec
= start
;
131 next_edl_record
->stop_sec
= start
;
133 next_edl_record
= edl_alloc_new(next_edl_record
);
135 next_edl_record
->action
= action
;
136 next_edl_record
->length_sec
= 0;
137 next_edl_record
->start_sec
= stop
;
138 next_edl_record
->stop_sec
= stop
;
141 next_edl_record
->length_sec
= stop
- start
;
142 next_edl_record
->start_sec
= start
;
143 next_edl_record
->stop_sec
= stop
;
153 mp_tmsg(MSGT_CPLAYER
, MSGL_INFO
, "Read %d EDL actions.\n", record_count
);
155 mp_tmsg(MSGT_CPLAYER
, MSGL_INFO
, "There are no EDL actions to take care of.\n");