began custom pix fmt converter

This commit is contained in:
itsmattkc
2019-05-23 02:22:45 +10:00
parent a82e5ccbce
commit d76ac6ff38
22 changed files with 472 additions and 77 deletions
+26
View File
@@ -4,3 +4,29 @@ FFmpegDecoder::FFmpegDecoder()
{
}
bool FFmpegDecoder::Open()
{
if (open_) {
return true;
}
}
void FFmpegDecoder::Request(const rational &timecode)
{
}
void FFmpegDecoder::Retrieve(uint8_t **buffer, int *linesize)
{
}
void FFmpegDecoder::Close()
{
if (!open_) {
return;
}
}