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