FFMS2: Missing #ifdef

Originally committed to SVN as r2956.
This commit is contained in:
Fredrik Mellbin 2009-05-20 19:05:42 +00:00
parent 34c50c8cd9
commit 67e9033899
1 changed files with 4 additions and 0 deletions

View File

@ -84,6 +84,8 @@ public:
const char *GetTrackCodec(int Track) { return mkv_GetTrackInfo(MF, Track)->CodecID; }
};
#ifdef HAALISOURCE
class FFHaaliIndexer : public FFIndexer {
private:
int SourceMode;
@ -102,4 +104,6 @@ public:
const char *GetTrackCodec(int Track) { if (Codec[Track]) return Codec[Track]->name; else return "Unsupported codec/Unknown codec name"; }
};
#endif // HAALISOURCE
#endif