comparison mpegts.h @ 2172:92f61ed53965 libavformat

add multiple inclusion guards to headers
author mru
date Sun, 17 Jun 2007 00:01:30 +0000
parents a6d6b2b19341
children f6021da48f21
comparison
equal deleted inserted replaced
2171:a6d6b2b19341 2172:92f61ed53965
16 * 16 *
17 * You should have received a copy of the GNU Lesser General Public 17 * You should have received a copy of the GNU Lesser General Public
18 * License along with FFmpeg; if not, write to the Free Software 18 * License along with FFmpeg; if not, write to the Free Software
19 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA 19 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
20 */ 20 */
21
22 #ifndef AVFORMAT_MPEGTS_H
23 #define AVFORMAT_MPEGTS_H
21 24
22 #include "avformat.h" 25 #include "avformat.h"
23 26
24 #define TS_FEC_PACKET_SIZE 204 27 #define TS_FEC_PACKET_SIZE 204
25 #define TS_DVHS_PACKET_SIZE 192 28 #define TS_DVHS_PACKET_SIZE 192
61 64
62 MpegTSContext *mpegts_parse_open(AVFormatContext *s); 65 MpegTSContext *mpegts_parse_open(AVFormatContext *s);
63 int mpegts_parse_packet(MpegTSContext *ts, AVPacket *pkt, 66 int mpegts_parse_packet(MpegTSContext *ts, AVPacket *pkt,
64 const uint8_t *buf, int len); 67 const uint8_t *buf, int len);
65 void mpegts_parse_close(MpegTSContext *ts); 68 void mpegts_parse_close(MpegTSContext *ts);
69
70 #endif