Home | History | Annotate | Download | only in source

Lines Matching refs:MJpegDecoder

39 const int MJpegDecoder::kColorSpaceUnknown = JCS_UNKNOWN;
40 const int MJpegDecoder::kColorSpaceGrayscale = JCS_GRAYSCALE;
41 const int MJpegDecoder::kColorSpaceRgb = JCS_RGB;
42 const int MJpegDecoder::kColorSpaceYCbCr = JCS_YCbCr;
43 const int MJpegDecoder::kColorSpaceCMYK = JCS_CMYK;
44 const int MJpegDecoder::kColorSpaceYCCK = JCS_YCCK;
46 MJpegDecoder::MJpegDecoder()
73 MJpegDecoder::~MJpegDecoder() {
115 bool MJpegDecoder::LoadFrame(const uint8* src, size_t src_len) {
178 int MJpegDecoder::GetWidth() {
183 int MJpegDecoder::GetHeight() {
189 int MJpegDecoder::GetColorSpace() {
194 int MJpegDecoder::GetNumComponents() {
199 int MJpegDecoder::GetHorizSampFactor(int component) {
203 int MJpegDecoder::GetVertSampFactor(int component) {
207 int MJpegDecoder::GetHorizSubSampFactor(int component) {
212 int MJpegDecoder::GetVertSubSampFactor(int component) {
217 int MJpegDecoder::GetImageScanlinesPerImcuRow() {
221 int MJpegDecoder::GetComponentScanlinesPerImcuRow(int component) {
226 int MJpegDecoder::GetComponentWidth(int component) {
231 int MJpegDecoder::GetComponentHeight(int component) {
237 int MJpegDecoder::GetComponentStride(int component) {
241 int MJpegDecoder::GetComponentSize(int component) {
245 bool MJpegDecoder::UnloadFrame() {
267 bool MJpegDecoder::DecodeToBuffers(
356 bool MJpegDecoder::DecodeToCallback(CallbackFunction fn, void* opaque,
432 void MJpegDecoder::init_source(j_decompress_ptr cinfo) {
436 boolean MJpegDecoder::fill_input_buffer(j_decompress_ptr cinfo) {
449 void MJpegDecoder::skip_input_data(j_decompress_ptr cinfo,
454 void MJpegDecoder::term_source(j_decompress_ptr cinfo) {
459 void MJpegDecoder::ErrorHandler(j_common_ptr cinfo) {
477 void MJpegDecoder::AllocOutputBuffers(int num_outbufs) {
500 void MJpegDecoder::DestroyOutputBuffers() {
517 bool MJpegDecoder::StartDecode() {
532 bool MJpegDecoder::FinishDecode() {
539 void MJpegDecoder::SetScanlinePointers(uint8** data) {
549 inline bool MJpegDecoder::DecodeImcuRow() {
557 JpegSubsamplingType MJpegDecoder::JpegSubsamplingTypeHelper(