2020-12-26 14:12:05 -08:00
|
|
|
// 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>
|
2021-06-06 16:13:58 -07:00
|
|
|
#include <string_view>
|
2016-12-02 23:33:29 -08:00
|
|
|
|
|
|
|
|
namespace wpi {
|
|
|
|
|
class raw_istream;
|
2017-10-15 10:01:17 -07:00
|
|
|
} // namespace wpi
|
2016-12-02 23:33:29 -08:00
|
|
|
|
|
|
|
|
namespace cs {
|
|
|
|
|
|
2021-06-06 16:13:58 -07:00
|
|
|
bool IsJpeg(std::string_view data);
|
2016-12-02 23:33:29 -08:00
|
|
|
|
2021-06-06 16:13:58 -07:00
|
|
|
bool GetJpegSize(std::string_view 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
|
|
|
|
2021-06-06 16:13:58 -07:00
|
|
|
std::string_view 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_
|