aboutsummaryrefslogtreecommitdiff
path: root/cue-bin-split.c
blob: 12d8e3aac68825194909dd946c8279a50825070b (plain)
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
/*
 * cue-bin-split - Split raw PCM files on time boundaries
 * Copyright (c) 2015 David Phillips <dbphillipsnz@gmail.com>
 * All rights reserved
 *
 * Redistribution and use in source and binary forms, with or without
 * modification, are permitted provided that the following conditions
 * are met:
 * 1. Redistributions of source code must retain the above copyright
 *    notice, this list of conditions and the following disclaimer.
 * 2. Redistributions in binary form must reproduce the above copyright
 *    notice, this list of conditions and the following disclaimer in the
 *    documentation and/or other materials provided with the distribution.
 *
 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS "AS IS" AND
 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
 * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
 * SUCH DAMAGE.
 */

#include <stdio.h>
#include <stdlib.h>
#include <assert.h>
#include <getopt.h>

#include "cue-bin-split.h"
#include "timestamp.h"


/* FIXME move me */
void die_help()
{
	fprintf(stderr,
		"\n"
		"Options: \n"
		"  -r bitrate_Hz\n"
		"  -c channel_count\n"
		"  -i input_file\n"
		"  -s size of a single channel's sample (bytes)\n"
		"  -f name_format (%%d and co are replaced with track number)\n"
	);
	exit(EXIT_FAILURE);
}

int main(int argc, char **argv)
{
	/* File handles */
	FILE *fin = NULL;
	FILE *fout = NULL;
	
	/* Command line options */
	char *format = NULL;
	char *in_fname = NULL;
	int channels = 0;
	int rate = 0;
	int sample_size = 0;
	
	/* Misc */
	char opt = 0;
	char out_fname[] = "track-000000000000"; /* That should do it */
	int index = 0;
	int items = 0;
	int i = 0;
	char buffer[BUFFER_SIZE];

	/* Timestamp building blocks */
	int mm = 0;
	int ss = 0;
	int ff = 0;

	/* Boundaries */
	double start_sec = 0;
	double finish_sec = 0;
	unsigned long start_sample = 0;
	unsigned long finish_sample = 0;
	
	while ( ( opt = getopt(argc, argv, "r:c:i:s:f:") ) != -1 )
	{
		switch (opt)
		{
			case 'r':
				rate = atoi(optarg);
				break;
			
			case 'c':
				channels = atoi(optarg);
				break;
			
			case 'i':
				in_fname = optarg;
				break;
			
			case 's':
				sample_size = atoi(optarg);
				break;
				
			case 'f':
				format = optarg;
				break;
			
			case '?':
			default:
				die_help();
				break;
		}
	}


	if (channels <= 0 ||
	    rate <= 0 ||
	    sample_size <= 0)
	{
		fprintf(stderr, "ERROR: Channel count, bitrate and sample size must all be positive\n");
		die_help();
	}

	/* Open it up */
	if ((fin = fopen(in_fname, "r")) == NULL) 
	{
		fprintf(stderr,"Failed to open '%s': ", in_fname);
		perror("fopen");
		return EXIT_FAILURE;
	}

	index = 0;
	items = get_stamp(&mm, &ss, &ff); /* FIXME doesn't check return value */
	start_sec = (double)mm*60 + (double)ss + ((double)ff)/FRAMES_PER_SEC;

	while ( ( items = get_stamp(&mm, &ss, &ff) ) )
	{
		index++;

		i = snprintf(out_fname, sizeof(out_fname), format, index);
		if (i == sizeof(out_fname))
		{
			fprintf(stderr, "Filename too large for buffer\n");
			fclose(fin);
			return EXIT_FAILURE;
		}

		/* Open output file */
		if ((fout = fopen(out_fname, "w")) == NULL)
		{
			fprintf(stderr,"Failed to open '%s': ", out_fname);
			perror("fopen");
			fclose(fin);
			return EXIT_FAILURE;
		}

		/* EOF means this is the last track; run it to end of input file */
		if (items == EOF)
		{
			finish_sec = -1;
		} else {
			/* Following track starts at end of last */
			if (items != 3)
			{
				fprintf(stderr, "Timestamp #%d malformed\n", index);
				break;
			}
			finish_sec = (double)mm*60 + (double)ss + ((double)ff)/75;
		}
		printf("%s starts %f s, finishes %f s\n", out_fname, start_sec, finish_sec);

		start_sample = start_sec * rate * channels;
		finish_sample = finish_sec * rate * channels;


		/* Seek to first sample of track */
		fseek(fin, (start_sample * sample_size), SEEK_SET);

		if (finish_sec >= 0)
		{
			for (i = (int)start_sample; i < (int)finish_sample; i += items)
			{
				/* FIXME unnecessary call to fwrite with items == 0 possible */
				/* FIXME Handle EOF properly, silly! */
				if ((items = fread(buffer, sample_size, sizeof(buffer)/sample_size, fin)))
				{
					if (feof(fin))
						break;
					fwrite(buffer, items, sample_size, fout);
				}
			}
		} else {
			for (i = (int)start_sample; ; i += items)
			{
				/* FIXME unnecessary call to fwrite with items == 0 possible */
				if ((items = fread(buffer, sample_size, sizeof(buffer)/sample_size, fin)))
				{
					if (feof(fin))
						break;
					fwrite(buffer, items, sample_size, fout);
				}
			}

		}
		fclose(fout);
		start_sec = finish_sec;

		if (finish_sec < 0)
			break;
	}
	return 0;
}