mirror of
https://github.com/CCExtractor/ccextractor.git
synced 2024-12-25 12:23:59 +00:00
not to write 0 bytes
write have undefined( not mentioned behaviour when 0 bytes written) write xds data even if start_time is 0
This commit is contained in:
parent
45a3e21897
commit
e50c30eaaa
@ -328,18 +328,20 @@ int encode_sub(struct encoder_ctx *context, struct cc_subtitle *sub)
|
||||
|
||||
for(data = sub->data; sub->nb_data ; sub->nb_data--,data++)
|
||||
{
|
||||
if(!data || !data->start_time)
|
||||
break;
|
||||
new_sentence=1;
|
||||
|
||||
if(data->format == SFORMAT_XDS)
|
||||
{
|
||||
xds_write_transcript_line_prefix (context->out, data->start_time, data->end_time,data->cur_xds_packet_class);
|
||||
write (context->out->fh, data->xds_str,data->xds_len);
|
||||
if(data->xds_len > 0)
|
||||
write (context->out->fh, data->xds_str,data->xds_len);
|
||||
freep (&data->xds_str);
|
||||
xds_write_transcript_line_suffix (context->out);
|
||||
continue;
|
||||
}
|
||||
|
||||
if(!data->start_time)
|
||||
break;
|
||||
switch (ccx_options.write_format)
|
||||
{
|
||||
case CCX_OF_SRT:
|
||||
|
Loading…
Reference in New Issue
Block a user