summaryrefslogtreecommitdiff
path: root/src/cuttime.c
blob: 2b591a6bdec59a3bd05a9e24caf01676d88bf506 (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
#define _XOPEN_SOURCE 500
#include <stdio.h>
#include <stdlib.h>
#include <stdint.h>
#include <unistd.h>

#include "video_decode.h"
#include "util.h"

static void
start_new_szene(int64_t prev_szene_end, int64_t start)
{
	static int prev_dts_start = 0;

	print_time(prev_dts_start);
	printf(" ");
	print_time(prev_szene_end - prev_dts_start);
	prev_dts_start = start;
}

static void
usage(void)
{
	fprintf(stderr,
		"cuttime [-adDfhsT] FILE\n"
		"\n"
		"OPTIONS\n"
		"\t-a\tcalculate average color of a frame\n"
		"\t-d\tcalculate difference between prev and next frame and\n"
		"\t\tslope of this value\n"
		"\t-D\tprint diff and slope of diff (implies -d)\n"
		"\t-f\tprint frame number of every frame\n"
		"\t-h\tprint this help message\n"
		"\t-s\tsave frame from detected cut\n"
		"\t-T\tprint timestamp of every frame\n");

	exit(EXIT_FAILURE);
}

int
main(int argc, char **argv)
{
	struct video_decode *vd;
	struct video_frame *frame_a = NULL, *frame_b = NULL;
	int ret, ch;
	int diff_flag = 0, average_flag = 0, frame_flag = 0, showcut_flag = 0;
	int print_diff_flag = 0, time_flag = 0;
	int64_t timestamp = 0;
	double diff = 0.0, prev_diff = 0.0, diff_slope = 0.0;
	char filename[BUFSIZ];

	while ((ch = getopt(argc, argv, "adDfsTh")) != -1) {
		switch (ch) {
		case 'a':
			average_flag = 1;
			break;
		case 'd':
			diff_flag = 1;
			break;
		case 'D':
			print_diff_flag = 1;
			diff_flag = 1;		/* implies -d */
			break;
		case 'f':
			frame_flag = 1;
			break;
		case 's':
			showcut_flag = 1;
			break;
		case 'T':
			time_flag = 1;
			break;
		case 'h':
		default:
			usage();
			/* NOTREACHED */
		}
	}
	argc -= optind;
	argv += optind;

	if (argc < 1)
		usage();

	if (argc == 2 && strtol(argv[1], NULL, 10) > 0)
		timestamp = strtol(argv[1], NULL, 10);

	ret = video_decode_init(&vd, argv[0], timestamp);
	if (ret < 0)
		return -ret;

	ret = video_decode_get_frame(vd, &frame_a);
	if (ret < 0)
		return -ret;

	for (int i = 0; video_decode_get_frame(vd, &frame_b) > 0; ++i) {

		if (frame_flag)		/* print frame number */
			printf("%d\t", i);

		if (time_flag)
			printf("%jd\t", frame_b->dts);

		if (average_flag)	/* print frame average */
			printf("%f", frame_average(frame_a));

		if (average_flag && diff_flag)
			printf("\t");

		if (diff_flag) {
			diff = frame_diff(frame_a, frame_b);
			diff_slope = diff - prev_diff;
			prev_diff = diff;

			if (print_diff_flag)
				printf("%f\t%f\t", diff, diff_slope);
		}

		if (diff_slope > 20.0) {
			start_new_szene(frame_a->dts, frame_b->dts);

			if (!frame_flag && !average_flag) {
				printf("\n");
				fflush(stdout);
			}

			if (showcut_flag == 1) {
				snprintf(filename, BUFSIZ, "img/%04i.pgm", i);
				frame_mix(frame_a, frame_b);

				if (pgm_save(frame_a->data, frame_a->stride,
					     frame_a->width, frame_a->height,
					     filename) < 0)
					exit(EXIT_FAILURE);
			}
		}

		if (frame_flag || average_flag) {
			printf("\n");
			fflush(stdout);
		}

		pswap((void **)&frame_a, (void **)&frame_b);
	}

	if (diff_flag) {
		/* acutally we just finalize the last frame here */
		start_new_szene(frame_a->dts, 0);
		printf("\n");
	}

	video_decode_free_frame(&frame_a);
	if (frame_b)
		video_decode_free_frame(&frame_b);
	video_decode_uninit(&vd);
	return EXIT_SUCCESS;
}