Files
allwpilib/cscore/src/main/native/cpp/JpegUtil.h

31 lines
703 B
C
Raw Normal View History

// Copyright (c) FIRST and other WPILib contributors.
// Open Source Software; you can modify and/or share it under the terms of
// the WPILib BSD license file in the root directory of this project.
2016-12-02 23:33:29 -08:00
2017-08-25 17:48:06 -07:00
#ifndef CSCORE_JPEGUTIL_H_
#define CSCORE_JPEGUTIL_H_
2016-12-02 23:33:29 -08:00
2017-08-25 17:48:06 -07:00
#include <string>
#include <wpi/StringRef.h>
2016-12-02 23:33:29 -08:00
namespace wpi {
class raw_istream;
} // namespace wpi
2016-12-02 23:33:29 -08:00
namespace cs {
bool IsJpeg(wpi::StringRef data);
2016-12-02 23:33:29 -08:00
bool GetJpegSize(wpi::StringRef data, int* width, int* height);
2016-12-02 23:33:29 -08:00
2017-08-25 17:48:06 -07:00
bool JpegNeedsDHT(const char* data, size_t* size, size_t* locSOF);
2016-12-02 23:33:29 -08:00
wpi::StringRef JpegGetDHT();
2016-12-02 23:33:29 -08:00
bool ReadJpeg(wpi::raw_istream& is, std::string& buf, int* width, int* height);
} // namespace cs
2017-08-25 17:48:06 -07:00
#endif // CSCORE_JPEGUTIL_H_