File: ksrt.c

package info (click to toggle)
libkate 0.4.3-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 5,680 kB
  • sloc: ansic: 11,059; sh: 4,930; yacc: 2,358; python: 767; javascript: 407; lex: 363; makefile: 263
file content (64 lines) | stat: -rw-r--r-- 1,705 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
/* Copyright (C) 2008 Vincent Penquerc'h.
   This file is part of the Kate codec library.
   Written by Vincent Penquerc'h.

   Use, distribution and reproduction of this library is governed
   by a BSD style source license included with this source in the
   file 'COPYING'. Please read these terms before distributing. */


#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
#include <stdio.h>
#include <stdlib.h>
#include <ogg/ogg.h>
#include "kate/kate.h"
#include "kutil.h"
#include "ksrt.h"

void *new_srt_data(void)
{
  struct srt_data *srt_data=kate_malloc(sizeof(struct srt_data));
  if (srt_data) {
    srt_data->event_index=0;
  }
  return srt_data;
}

void free_srt_data(void *data)
{
  kate_free(data);
}

static ogg_int64_t granule_to_milliseconds(const kate_info *ki,ogg_int64_t granpos)
{
  return (1000*granpos*ki->gps_denominator+ki->gps_numerator/2)/ki->gps_numerator;
}

static void milliseconds_to_time(ogg_int64_t ms,int *hours,int *minutes,int *seconds,int *milliseconds)
{
  *hours=ms/(60*60*1000);
  *minutes=ms/(60*1000)%60;
  *seconds=ms/1000%60;
  *milliseconds=ms%1000;
}

void write_srt_event(FILE *fout,void *data,const kate_event *ev,ogg_int64_t granpos)
{
  int h0,m0,s0,ms0;
  int h1,m1,s1,ms1;
  struct srt_data *srt_data=(struct srt_data*)data;

  milliseconds_to_time(granule_to_milliseconds(ev->ki,ev->start),&h0,&m0,&s0,&ms0);
  milliseconds_to_time(granule_to_milliseconds(ev->ki,ev->start+ev->duration),&h1,&m1,&s1,&ms1);

  (void)granpos;
  (void)data;
  fprintf(fout,"%d\n",++srt_data->event_index);
  fprintf(fout,"%02d:%02d:%02d,%03d --> %02d:%02d:%02d,%03d\n",h0,m0,s0,ms0,h1,m1,s1,ms1);
  fprintf(fout,"%s\n",ev->text);
  fprintf(fout,"\n");
  fflush(fout);
}