mirror of
https://github.com/panda3d/panda3d.git
synced 2025-10-03 10:22:45 -04:00
We don't really need jpegint.h
This commit is contained in:
parent
30b2463a05
commit
062e90a81a
@ -22,16 +22,21 @@
|
|||||||
#include <linux/videodev.h>
|
#include <linux/videodev.h>
|
||||||
#include <linux/videodev2.h>
|
#include <linux/videodev2.h>
|
||||||
|
|
||||||
#ifdef SUPPORT_WEBCAM_VIDEO_JPEG
|
#ifdef HAVE_JPEG
|
||||||
extern "C" {
|
extern "C" {
|
||||||
#include <jpeglib.h>
|
#include <jpeglib.h>
|
||||||
#include <jpegint.h>
|
|
||||||
#include <jerror.h>
|
#include <jerror.h>
|
||||||
}
|
}
|
||||||
|
|
||||||
#include <setjmp.h>
|
#include <setjmp.h>
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
// This is supposed to be defined in jpegint.h,
|
||||||
|
// but not all implementations of JPEG provide that file.
|
||||||
|
#ifndef DSTATE_READY
|
||||||
|
#define DSTATE_READY 202
|
||||||
|
#endif
|
||||||
|
|
||||||
TypeHandle WebcamVideoCursorV4L::_type_handle;
|
TypeHandle WebcamVideoCursorV4L::_type_handle;
|
||||||
|
|
||||||
#define clamp(x) min(max(x, 0.0), 255.0)
|
#define clamp(x) min(max(x, 0.0), 255.0)
|
||||||
@ -61,7 +66,7 @@ INLINE static void yuyv_to_rgbargba(unsigned char *dest, const unsigned char *sr
|
|||||||
dest[7] = (unsigned char) -1;
|
dest[7] = (unsigned char) -1;
|
||||||
}
|
}
|
||||||
|
|
||||||
#if defined(SUPPORT_WEBCAM_VIDEO_JPEG) && !defined(CPPPARSER)
|
#if defined(HAVE_JPEG) && !defined(CPPPARSER)
|
||||||
|
|
||||||
struct my_error_mgr {
|
struct my_error_mgr {
|
||||||
struct jpeg_error_mgr pub;
|
struct jpeg_error_mgr pub;
|
||||||
@ -155,7 +160,7 @@ WebcamVideoCursorV4L(WebcamVideoV4L *src) : MovieVideoCursor(src) {
|
|||||||
_format->type = V4L2_BUF_TYPE_VIDEO_CAPTURE;
|
_format->type = V4L2_BUF_TYPE_VIDEO_CAPTURE;
|
||||||
pvector<uint32_t>::iterator it;
|
pvector<uint32_t>::iterator it;
|
||||||
for (it = src->_pformats.begin(); it != src->_pformats.end(); ++it) {
|
for (it = src->_pformats.begin(); it != src->_pformats.end(); ++it) {
|
||||||
#ifdef SUPPORT_WEBCAM_VIDEO_JPEG
|
#ifdef HAVE_JPEG
|
||||||
if (*it == V4L2_PIX_FMT_MJPEG) {
|
if (*it == V4L2_PIX_FMT_MJPEG) {
|
||||||
_format->fmt.pix.pixelformat = *it;
|
_format->fmt.pix.pixelformat = *it;
|
||||||
break;
|
break;
|
||||||
@ -242,7 +247,7 @@ WebcamVideoCursorV4L(WebcamVideoV4L *src) : MovieVideoCursor(src) {
|
|||||||
vision_cat.error() << "Failed to stream from buffer!\n";
|
vision_cat.error() << "Failed to stream from buffer!\n";
|
||||||
}
|
}
|
||||||
|
|
||||||
#ifdef SUPPORT_WEBCAM_VIDEO_JPEG
|
#ifdef HAVE_JPEG
|
||||||
// Initialize the JPEG library, if necessary
|
// Initialize the JPEG library, if necessary
|
||||||
if (_format->fmt.pix.pixelformat == V4L2_PIX_FMT_MJPEG) {
|
if (_format->fmt.pix.pixelformat == V4L2_PIX_FMT_MJPEG) {
|
||||||
_cinfo = (struct jpeg_decompress_struct *) malloc(sizeof(struct jpeg_decompress_struct));
|
_cinfo = (struct jpeg_decompress_struct *) malloc(sizeof(struct jpeg_decompress_struct));
|
||||||
@ -269,7 +274,7 @@ WebcamVideoCursorV4L(WebcamVideoV4L *src) : MovieVideoCursor(src) {
|
|||||||
////////////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////////////
|
||||||
WebcamVideoCursorV4L::
|
WebcamVideoCursorV4L::
|
||||||
~WebcamVideoCursorV4L() {
|
~WebcamVideoCursorV4L() {
|
||||||
#ifdef SUPPORT_WEBCAM_VIDEO_JPEG
|
#ifdef HAVE_JPEG
|
||||||
if (_cinfo != NULL) {
|
if (_cinfo != NULL) {
|
||||||
jpeg_destroy_decompress(_cinfo);
|
jpeg_destroy_decompress(_cinfo);
|
||||||
free(_cinfo);
|
free(_cinfo);
|
||||||
@ -320,7 +325,7 @@ fetch_into_buffer(double time, unsigned char *block, bool bgra) {
|
|||||||
unsigned char *buf = (unsigned char *) _buffers[vbuf.index];
|
unsigned char *buf = (unsigned char *) _buffers[vbuf.index];
|
||||||
|
|
||||||
if (_format->fmt.pix.pixelformat == V4L2_PIX_FMT_MJPEG) {
|
if (_format->fmt.pix.pixelformat == V4L2_PIX_FMT_MJPEG) {
|
||||||
#ifdef SUPPORT_WEBCAM_VIDEO_JPEG
|
#ifdef HAVE_JPEG
|
||||||
nassertv(!bgra);
|
nassertv(!bgra);
|
||||||
struct my_error_mgr jerr;
|
struct my_error_mgr jerr;
|
||||||
_cinfo->err = jpeg_std_error(&jerr.pub);
|
_cinfo->err = jpeg_std_error(&jerr.pub);
|
||||||
|
@ -23,9 +23,7 @@
|
|||||||
|
|
||||||
struct v4l2_format;
|
struct v4l2_format;
|
||||||
|
|
||||||
// We can only decode a motion-jpeg stream if we have jpegint.h.
|
#if defined(HAVE_JPEG)
|
||||||
#if defined(HAVE_JPEG) && defined(PHAVE_JPEGINT_H)
|
|
||||||
#define SUPPORT_WEBCAM_VIDEO_JPEG 1
|
|
||||||
struct jpeg_decompress_struct;
|
struct jpeg_decompress_struct;
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user