StreamingPluginWiiU/src/JpegInformation.cpp

16 lines
350 B
C++
Raw Normal View History

2018-07-03 20:23:12 +02:00
#include "JpegInformation.h"
#include <malloc.h>
JpegInformation::JpegInformation(tjhandle handle, uint8_t* jpegBuf, uint64_t jpegSize) {
this->buffer = jpegBuf;
this->size = jpegSize;
this->handle = handle;
}
JpegInformation::~JpegInformation() {
if(this->buffer) {
free(this->buffer);
}
tjDestroy(this->handle);
}