123456789101112131415161718 |
- #ifndef NULLSOFT_VIDEODATACONVERTERH
- #define NULLSOFT_VIDEODATACONVERTERH
- #include "OutputStream.h"
- class VideoDataConverter
- {
- public:
- virtual void *Convert(void *videoData)
- {
- return videoData;
- }
- };
- VideoDataConverter *MakeConverter(VideoOutputStream *stream);
- #endif
|