mirror of
https://github.com/panda3d/panda3d.git
synced 2026-05-02 20:50:17 -05:00
parser stubs are in for ffmpeg
This commit is contained in:
@@ -7,4 +7,7 @@
|
||||
nurbs.hh stddef.h krb5.h MainHelix.h dllpath.h hxcom.h \
|
||||
hxcomm.h hxcore.h hxengin.h hxerror.h hxfiles.h hxtbuf.h \
|
||||
hxtbuff.h hxwin.h Python.h Cg/cg.h Cg/cgGL.h \
|
||||
cv.h cvtypes.h cxcore.h cxerror.h cxtypes.h highgui.h
|
||||
cv.h cvtypes.h cxcore.h cxerror.h cxtypes.h highgui.h \
|
||||
avcodec.h avformat.h avio.h avutil.h common.h integer.h \
|
||||
intfloat_readwrite.h mathematics.h rational.h rtp.h \
|
||||
rtsp.h rtspcodes.h
|
||||
|
||||
@@ -0,0 +1,8 @@
|
||||
#ifndef AVCODEC_H
|
||||
#define AVCODEC_H
|
||||
|
||||
typedef struct AVCodec AVCodec;
|
||||
typedef struct AVCodecContext AVCodecContext;
|
||||
typedef struct AVFrame AVFrame;
|
||||
|
||||
#endif /* AVCODEC_H */
|
||||
@@ -0,0 +1,6 @@
|
||||
#ifndef AVFORMAT_H
|
||||
#define AVFORMAT_H
|
||||
typedef struct AVFormat AVFormat;
|
||||
typedef struct AVFormatContext AVFormatContext;
|
||||
#endif /* AVFORMAT_H */
|
||||
|
||||
@@ -0,0 +1,4 @@
|
||||
#ifndef AVIO_H
|
||||
#define AVIO_H
|
||||
#endif
|
||||
|
||||
@@ -0,0 +1,4 @@
|
||||
#ifndef AVUTIL_H
|
||||
#define AVUTIL_H
|
||||
|
||||
#endif /* AVUTIL_H */
|
||||
@@ -0,0 +1,9 @@
|
||||
/**
|
||||
* @file common.h
|
||||
* common internal api header.
|
||||
*/
|
||||
|
||||
#ifndef COMMON_H
|
||||
#define COMMON_H
|
||||
|
||||
#endif /* COMMON_H */
|
||||
@@ -0,0 +1,29 @@
|
||||
/*
|
||||
* arbitrary precision integers
|
||||
* Copyright (c) 2004 Michael Niedermayer <michaelni@gmx.at>
|
||||
*
|
||||
* This library is free software; you can redistribute it and/or
|
||||
* modify it under the terms of the GNU Lesser General Public
|
||||
* License as published by the Free Software Foundation; either
|
||||
* version 2 of the License, or (at your option) any later version.
|
||||
*
|
||||
* This library is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||
* Lesser General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU Lesser General Public
|
||||
* License along with this library; if not, write to the Free Software
|
||||
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
||||
*
|
||||
*/
|
||||
|
||||
/**
|
||||
* @file integer.h
|
||||
* arbitrary precision integers
|
||||
* @author Michael Niedermayer <michaelni@gmx.at>
|
||||
*/
|
||||
|
||||
#ifndef INTEGER_H
|
||||
#define INTEGER_H
|
||||
#endif // INTEGER_H
|
||||
@@ -0,0 +1,6 @@
|
||||
#ifndef INTFLOAT_READWRITE_H
|
||||
#define INTFLOAT_READWRITE_H
|
||||
|
||||
#include "common.h"
|
||||
|
||||
#endif /* INTFLOAT_READWRITE_H */
|
||||
@@ -0,0 +1,7 @@
|
||||
#ifndef MATHEMATICS_H
|
||||
#define MATHEMATICS_H
|
||||
|
||||
#include "rational.h"
|
||||
|
||||
|
||||
#endif /* MATHEMATICS_H */
|
||||
@@ -0,0 +1,31 @@
|
||||
/*
|
||||
* Rational numbers
|
||||
* Copyright (c) 2003 Michael Niedermayer <michaelni@gmx.at>
|
||||
*
|
||||
* This library is free software; you can redistribute it and/or
|
||||
* modify it under the terms of the GNU Lesser General Public
|
||||
* License as published by the Free Software Foundation; either
|
||||
* version 2 of the License, or (at your option) any later version.
|
||||
*
|
||||
* This library is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||
* Lesser General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU Lesser General Public
|
||||
* License along with this library; if not, write to the Free Software
|
||||
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
||||
*
|
||||
*/
|
||||
|
||||
/**
|
||||
* @file rational.h
|
||||
* Rational numbers.
|
||||
* @author Michael Niedermayer <michaelni@gmx.at>
|
||||
*/
|
||||
|
||||
#ifndef RATIONAL_H
|
||||
#define RATIONAL_H
|
||||
|
||||
|
||||
#endif // RATIONAL_H
|
||||
@@ -0,0 +1,22 @@
|
||||
/*
|
||||
* RTP definitions
|
||||
* Copyright (c) 2002 Fabrice Bellard.
|
||||
*
|
||||
* This library is free software; you can redistribute it and/or
|
||||
* modify it under the terms of the GNU Lesser General Public
|
||||
* License as published by the Free Software Foundation; either
|
||||
* version 2 of the License, or (at your option) any later version.
|
||||
*
|
||||
* This library is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||
* Lesser General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU Lesser General Public
|
||||
* License along with this library; if not, write to the Free Software
|
||||
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
||||
*/
|
||||
#ifndef RTP_H
|
||||
#define RTP_H
|
||||
|
||||
#endif /* RTP_H */
|
||||
@@ -0,0 +1,22 @@
|
||||
/*
|
||||
* RTSP definitions
|
||||
* Copyright (c) 2002 Fabrice Bellard.
|
||||
*
|
||||
* This library is free software; you can redistribute it and/or
|
||||
* modify it under the terms of the GNU Lesser General Public
|
||||
* License as published by the Free Software Foundation; either
|
||||
* version 2 of the License, or (at your option) any later version.
|
||||
*
|
||||
* This library is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||
* Lesser General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU Lesser General Public
|
||||
* License along with this library; if not, write to the Free Software
|
||||
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
||||
*/
|
||||
#ifndef RTSP_H
|
||||
#define RTSP_H
|
||||
|
||||
#endif /* RTSP_H */
|
||||
@@ -0,0 +1,11 @@
|
||||
DEF(200, RTSP_STATUS_OK, "OK")
|
||||
DEF(405, RTSP_STATUS_METHOD, "Method Not Allowed")
|
||||
DEF(453, RTSP_STATUS_BANDWIDTH, "Not Enough Bandwidth")
|
||||
DEF(454, RTSP_STATUS_SESSION, "Session Not Found")
|
||||
DEF(455, RTSP_STATUS_STATE, "Method Not Valid in This State")
|
||||
DEF(459, RTSP_STATUS_AGGREGATE, "Aggregate operation not allowed")
|
||||
DEF(460, RTSP_STATUS_ONLY_AGGREGATE, "Only aggregate operation allowed")
|
||||
DEF(461, RTSP_STATUS_TRANSPORT, "Unsupported transport")
|
||||
DEF(500, RTSP_STATUS_INTERNAL, "Internal Server Error")
|
||||
DEF(503, RTSP_STATUS_SERVICE, "Service Unavailable")
|
||||
DEF(505, RTSP_STATUS_VERSION, "RTSP Version not supported")
|
||||
Reference in New Issue
Block a user