File: generic.cpp

package info (click to toggle)
ogmtools 1%3A1.5-7
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 1,564 kB
  • sloc: cpp: 8,003; ansic: 5,865; sh: 3,167; makefile: 71
file content (263 lines) | stat: -rw-r--r-- 7,421 bytes parent folder | download | duplicates (7)
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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
/*
  ogmmerge -- utility for splicing together ogg bitstreams
  from component media subtypes

  generic.cpp
  generic base classes, chapter file support

  Written by Moritz Bunkus <moritz@bunkus.org>
  Based on Xiph.org's 'oggmerge' found in their CVS repository
  See http://www.xiph.org

  Distributed under the GPL
  see the file COPYING for details
  or visit http://www.gnu.org/copyleft/gpl.html
*/
#include <ctype.h>
#include <stdlib.h>
#include <string.h>

#include <vorbis/codec.h>

#include "common.h"
#include "ogmmerge.h"
#include "vorbis_header_utils.h"

generic_packetizer_c::generic_packetizer_c() {
  comments = NULL;
}

int generic_packetizer_c::serial_in_use(int serial) {
  return (serial == serialno);
}

void generic_packetizer_c::set_comments(vorbis_comment *ncomments) {
  if (comments != NULL) {
    vorbis_comment_clear(comments);
    free(comments);
  }
  if (ncomments == NULL) {
    comments = NULL;
    return;
  }
  comments = (vorbis_comment *)malloc(sizeof(vorbis_comment));
  if (comments == NULL)
    die("malloc");
  memcpy(comments, ncomments, sizeof(vorbis_comment));
}
 
generic_reader_c::generic_reader_c() {
  chapter_info = NULL;
}

generic_reader_c::~generic_reader_c() {
  if (chapter_info != NULL) {
    vorbis_comment_clear(chapter_info);
    free(chapter_info);
  }
}
 
void generic_reader_c::set_chapter_info(vorbis_comment *info) {
  if (chapter_info != NULL) {
    vorbis_comment_clear(chapter_info);
    free(chapter_info);
  }
  chapter_info = vorbis_comment_dup(info);
}

#define isequal(s) (*(s) == '=')
#define iscolon(s) (*(s) == ':')
#define isfullstop(s) (*(s) == '.')
#define istwodigits(s) (isdigit(*(s)) && isdigit(*(s + 1)))
#define isthreedigits(s) (isdigit(*(s)) && isdigit(*(s + 1)) && \
                          isdigit(*(s + 2)))
#define isarrow(s) (!strncmp((s), " --> ", 5))
#define istimestamp(s) (istwodigits(s) && iscolon(s + 2) && \
                        istwodigits(s + 3) && iscolon(s + 5) && \
                        istwodigits(s + 6) && isfullstop(s + 8) && \
                        isthreedigits(s + 9))
#define ischapter(s) ((strlen(s) == 22) && \
                      !strncmp(s, "CHAPTER", 7) && \
                      istwodigits(s + 7) && isequal(s + 9) && \
                      istimestamp(s + 10))
#define ischaptername(s) ((strlen(s) > 14) && \
                          !strncmp(s, "CHAPTER", 7) && \
                          istwodigits(s + 7) && \
                          !strncmp(s + 9, "NAME", 4) && isequal(s + 13))
                        
int chapter_information_probe(FILE *file, off_t size) {
  char buf[201];
  int  len;

  if (size < 37)
    return 0;
  if (fseeko(file, 0, SEEK_SET) != 0)
    return 0;
  if (fgets(buf, 200, file) == NULL)
    return 0;
  len = strlen(buf);
  if (len == 0)
    return 0;
  if (buf[len - 1] != '\n')
    return 0;
  if (strncmp(buf, "CHAPTER", 7))
    return 0;
  if (strncmp(&buf[9], "=", 1))
    return 0;
  if (!istimestamp(&buf[10]))
    return 0;
  if (fgets(buf, 200, file) == NULL)
    return 0;
  len = strlen(buf);
  if (len == 0)
    return 0;
  if (buf[len - 1] != '\n')
    return 0;
  if (strncmp(buf, "CHAPTER", 7))
    return 0;
  if (strncmp(&buf[9], "NAME=", 5))
    return 0;

  return 1;
}

vorbis_comment *chapter_information_read(char *name) {
  vorbis_comment *vc;
  char            buf[201];
  char           *s;
  int             len;
  FILE           *file;
  
  if ((file = fopen(name, "r")) == NULL)
    return NULL;
  
  if (fseeko(file, 0, SEEK_SET) != 0)
    return NULL;
  
  if (verbose)
    fprintf(stdout, "Using chapter information reader for %s.\n", name);
  
  vc = (vorbis_comment *)malloc(sizeof(vorbis_comment));
  if (vc == NULL)
    die("malloc");

  vc->vendor = strdup(VERSIONINFO);
  vc->user_comments = (char **)mmalloc(4);
  vc->comment_lengths = (int *)mmalloc(4);
  vc->comments = 0;

  while (!feof(file)) {
    if (fgets(buf, 200, file) != NULL) {
      len = strlen(buf);
      if (len > 0) {
        s = &buf[len - 1];
        while ((s != buf) && ((*s == '\n') || (*s == '\r'))) {
          *s = 0;
          s--;
        }
        len = strlen(buf);
        if (len > 0)
          vorbis_comment_add(vc, buf);
      }
    }
  }
  
  return vc;
}

vorbis_comment *chapter_information_adjust(vorbis_comment *vc, double start,
                                           double end) {
  vorbis_comment *nvc;
  int             i, chapter_sub, chapter, hour, min, sec, msec;
  char           *copy;
  char           *last;
  char            copy_chapters[100], new_chapter[24];
  double          cstart;

  if (vc == NULL)
    return NULL;

  memset(copy_chapters, 0, 100);
  nvc = (vorbis_comment *)malloc(sizeof(vorbis_comment));
  if (nvc == NULL)
    die("malloc");

  nvc->vendor = strdup(VERSIONINFO);
  nvc->user_comments = (char **)mmalloc(4);
  nvc->comment_lengths = (int *)mmalloc(4);
  nvc->comments = 0;
  chapter_sub = -1;
  last = NULL;

  for (i = 0; i < vc->comments; i++) {
    if (ischapter(vc->user_comments[i])) {
      copy = strdup(vc->user_comments[i]);
      if (copy == NULL)
        die("malloc");
/*
 * CHAPTER01=01:23:45.678
 * 0123456789012345678901
 *           1         2
 */
      copy[9] = 0;    // =
      copy[12] = 0;   // :
      copy[15] = 0;   // :
      copy[18] = 0;   // .
      chapter = strtol(&copy[7], NULL, 10);
      hour= strtol(&copy[10], NULL, 10);
      min = strtol(&copy[13], NULL, 10);
      sec = strtol(&copy[16], NULL, 10);
      msec = strtol(&copy[19], NULL, 10);
      cstart = msec + (1000.0 * sec) + (60000.0 * min) + (3600000.0 * hour);
      if ((cstart >= start) && (cstart < end)) {
        copy_chapters[chapter] = 1;
        if (chapter_sub == -1) {
          chapter_sub = chapter - 1;
          if (last && (cstart > start)) {
            int last_length = strlen(last);
            sprintf(new_chapter, "CHAPTER01=00:00:00.000");
            vorbis_comment_add(nvc, new_chapter);
            last  = (char *)realloc(last, last_length + 12 + 1);
            sprintf(&last[7], "01");
            last[9] = 'N';
            sprintf(&last[last_length], " (continued)");
            last[last_length+12] = 0;
            vorbis_comment_add(nvc, last);
            free(last);
            chapter_sub--;
          }
        }
        chapter -= chapter_sub;
        sprintf(new_chapter, "CHAPTER%02d=%02d:%02d:%02d.%03d", chapter,
                (((int)(cstart - start)) / 1000 / 60 / 60),
                (((int)(cstart - start)) / 1000 / 60) % 60,
                (((int)(cstart - start)) / 1000) % 60,
                ((int)(cstart - start)) % 1000);
        vorbis_comment_add(nvc, new_chapter);
      }
      free(copy);
    } else if (ischaptername(vc->user_comments[i])) {
      memcpy(new_chapter, &vc->user_comments[i][7], 2);
      new_chapter[2] = 0;
      chapter = strtol(new_chapter, NULL, 10);
      if (copy_chapters[chapter]) {
        copy = strdup(vc->user_comments[i]);
        if (copy == NULL)
          die("malloc");
        sprintf(&copy[7], "%02d", chapter - chapter_sub);
        copy[9] = 'N';
        vorbis_comment_add(nvc, copy);
        free(copy);
      } else if (chapter_sub == -1) {
        if (last != NULL)
          free(last);
        last = strdup(vc->user_comments[i]);
        if (last == NULL)
          die("malloc");
      }
    } else
      vorbis_comment_add(nvc, vc->user_comments[i]);
  }
  
  return nvc;
}