blob: 38726bce758f81ce8941edaa7e647be96fecab5a (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
#include "ogg_theora_decoder.h"
#include <string.h>
ifc_oggdecoder *OggDecoderFactory::CreateDecoder(const ogg_packet *packet)
{
if (packet && packet->packet && packet->bytes >= 42)
{
if (!memcmp(packet->packet + 1, "theora", 6))
return new OggTheoraDecoder(packet);
}
return 0;
}
#define CBCLASS OggDecoderFactory
START_DISPATCH;
CB(DISP_CREATEDECODER, CreateDecoder)
END_DISPATCH;
#undef CBCLASS
OggTheoraDecoder::OggTheoraDecoder(const ogg_packet *packet)
{
}
#define CBCLASS OggTheoraDecoder
START_DISPATCH;
END_DISPATCH;
#undef CBCLASS
|