mirror of https://github.com/odrling/Aegisub
Some fixes to libmedia/video.h
Originally committed to SVN as r5327.
This commit is contained in:
parent
ae7d00a57e
commit
83fd95c605
|
@ -36,6 +36,11 @@
|
||||||
|
|
||||||
#pragma once
|
#pragma once
|
||||||
|
|
||||||
|
#ifndef MAGI_PRE
|
||||||
|
#include <string>
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#include <libmedia/factory_manager.h>
|
||||||
#include <libmedia/video_frame.h>
|
#include <libmedia/video_frame.h>
|
||||||
#include <libaegisub/exception.h>
|
#include <libaegisub/exception.h>
|
||||||
#include <libaegisub/vfr.h>
|
#include <libaegisub/vfr.h>
|
||||||
|
@ -75,9 +80,9 @@ public:
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
class VideoProviderFactory : public Factory1<VideoProvider, wxString> {
|
class VideoProviderFactory : public Factory1<VideoProvider, std::string> {
|
||||||
public:
|
public:
|
||||||
static VideoProvider *GetProvider(wxString video);
|
static VideoProvider *GetProvider(std::string video);
|
||||||
static void RegisterProviders();
|
static void RegisterProviders();
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue