mirror of
https://gitlab.com/mbunkus/mkvtoolnix.git
synced 2024-12-25 04:11:44 +00:00
41 lines
880 B
C++
41 lines
880 B
C++
/*
|
|
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
|
|
\version \$Id: mkvmerge.h,v 1.6 2003/04/20 16:39:03 mosu Exp $
|
|
\brief definition of global variables found in mkvmerge.cpp
|
|
\author Moritz Bunkus <moritz @ bunkus.org>
|
|
*/
|
|
|
|
#ifndef __MKVMERGE_H
|
|
#define __MKVMERGE_H
|
|
|
|
#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;
|
|
|
|
extern int write_cues, cue_writing_requested;
|
|
|
|
#endif // __MKVMERGE_H
|