forked from mia/Aegisub
Remove exception.h, this used to be media.h in libaegisub however it's become moot after bringing in the provider headers from aegisub.
Originally committed to SVN as r5297.
This commit is contained in:
parent
f486f8dea8
commit
97abbf13ce
1 changed files with 0 additions and 20 deletions
|
@ -1,20 +0,0 @@
|
||||||
#include <libaegisub/exception.h>
|
|
||||||
|
|
||||||
|
|
||||||
DEFINE_BASE_EXCEPTION_NOINNER(AudioProviderError, agi::Exception);
|
|
||||||
DEFINE_SIMPLE_EXCEPTION_NOINNER(AudioOpenError, AudioProviderError, "audio/open/failed");
|
|
||||||
|
|
||||||
/// Error of some sort occurred while decoding a frame
|
|
||||||
DEFINE_SIMPLE_EXCEPTION_NOINNER(AudioDecodeError, AudioProviderError, "audio/error");
|
|
||||||
|
|
||||||
|
|
||||||
DEFINE_BASE_EXCEPTION_NOINNER(VideoProviderError, agi::Exception);
|
|
||||||
/// File could be opened, but is not a supported format
|
|
||||||
DEFINE_SIMPLE_EXCEPTION_NOINNER(VideoNotSupported, VideoProviderError, "video/open/notsupported");
|
|
||||||
/// File appears to be a supported format, but could not be opened
|
|
||||||
DEFINE_SIMPLE_EXCEPTION_NOINNER(VideoOpenError, VideoProviderError, "video/open/failed");
|
|
||||||
|
|
||||||
/// Error of some sort occurred while decoding a frame
|
|
||||||
DEFINE_SIMPLE_EXCEPTION_NOINNER(VideoDecodeError, VideoProviderError, "video/error");
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue