mirror of
https://gitlab.com/mbunkus/mkvtoolnix.git
synced 2024-12-25 04:11:44 +00:00
24 lines
477 B
C++
24 lines
477 B
C++
|
/*
|
||
|
mkvmerge -- utility for splicing together matroska files
|
||
|
from component media subtypes
|
||
|
|
||
|
common.cpp
|
||
|
helper functions
|
||
|
|
||
|
Written by Moritz Bunkus <moritz@bunkus.org>
|
||
|
|
||
|
Distributed under the GPL
|
||
|
see the file COPYING for details
|
||
|
or visit http://www.gnu.org/copyleft/gpl.html
|
||
|
*/
|
||
|
|
||
|
#include <stdio.h>
|
||
|
#include <stdlib.h>
|
||
|
|
||
|
int verbose = 0;
|
||
|
|
||
|
void _die(const char *s, const char *file, int line) {
|
||
|
fprintf(stderr, "die @ %s/%d : %s\n", file, line, s);
|
||
|
exit(1);
|
||
|
}
|