2003-04-18 10:08:24 +00:00
|
|
|
/*
|
|
|
|
mkvmerge -- utility for splicing together matroska files
|
|
|
|
from component media subtypes
|
|
|
|
|
|
|
|
mkvmerge.h
|
|
|
|
|
|
|
|
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
|
|
|
|
*/
|
|
|
|
|
|
|
|
/*!
|
|
|
|
\file
|
2003-05-05 21:55:02 +00:00
|
|
|
\version \$Id: mkvmerge.h,v 1.7 2003/05/05 21:55:02 mosu Exp $
|
2003-04-18 10:08:24 +00:00
|
|
|
\brief definition of global variables found in mkvmerge.cpp
|
|
|
|
\author Moritz Bunkus <moritz @ bunkus.org>
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __MKVMERGE_H
|
|
|
|
#define __MKVMERGE_H
|
|
|
|
|
2003-05-05 21:55:02 +00:00
|
|
|
#include "pr_generic.h"
|
|
|
|
|
2003-04-18 10:08:24 +00:00
|
|
|
#include "KaxCues.h"
|
|
|
|
#include "KaxSegment.h"
|
|
|
|
#include "KaxTracks.h"
|
|
|
|
|
|
|
|
using namespace LIBMATROSKA_NAMESPACE;
|
|
|
|
|
|
|
|
extern KaxSegment *kax_segment;
|
|
|
|
extern KaxTracks *kax_tracks;
|
|
|
|
extern KaxTrackEntry *kax_last_entry;
|
|
|
|
extern KaxCues *kax_cues;
|
|
|
|
extern int track_number;
|
|
|
|
|
|
|
|
extern float video_fps;
|
|
|
|
|
2003-04-20 16:39:03 +00:00
|
|
|
extern int write_cues, cue_writing_requested;
|
2003-04-18 13:55:48 +00:00
|
|
|
|
2003-05-05 21:55:02 +00:00
|
|
|
void add_packetizer(generic_packetizer_c *packetizer);
|
|
|
|
|
2003-04-18 10:08:24 +00:00
|
|
|
#endif // __MKVMERGE_H
|