2006-07-19 21:46:06 +00:00
|
|
|
/*
|
2008-05-14 18:01:51 +00:00
|
|
|
* helper routines for building MPEG 1/2 PS/PES packets
|
2006-07-19 21:46:06 +00:00
|
|
|
*
|
2008-05-14 18:01:51 +00:00
|
|
|
* Copyright (C) 2006 Benjamin Zores
|
2006-07-19 21:46:06 +00:00
|
|
|
*
|
2008-05-14 18:01:51 +00:00
|
|
|
* based on code borrowed from vo_mpegpes/vo_dxr2:
|
|
|
|
* (C) 2000 Ralph Metzler <ralph@convergence.de>
|
|
|
|
* Marcus Metzler <marcus@convergence.de>
|
|
|
|
* Gerard Lantau
|
2006-07-19 21:46:06 +00:00
|
|
|
*
|
2008-05-14 18:01:51 +00:00
|
|
|
* This file is part of MPlayer.
|
2006-07-19 21:46:06 +00:00
|
|
|
*
|
2008-05-14 18:01:51 +00:00
|
|
|
* MPlayer is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* MPlayer 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 General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License along
|
|
|
|
* with MPlayer; if not, write to the Free Software Foundation, Inc.,
|
|
|
|
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
2006-07-19 21:46:06 +00:00
|
|
|
*/
|
|
|
|
|
2008-02-22 09:09:46 +00:00
|
|
|
#ifndef MPLAYER_MPEG_PACKETIZER_H
|
|
|
|
#define MPLAYER_MPEG_PACKETIZER_H
|
2006-07-19 21:46:06 +00:00
|
|
|
|
2008-03-05 23:32:01 +00:00
|
|
|
#include <stdint.h>
|
|
|
|
|
2006-07-22 09:59:44 +00:00
|
|
|
/* Send MPEG <type> PES packet */
|
|
|
|
int send_mpeg_pes_packet (unsigned char *data, int len, int id, uint64_t pts,
|
2008-01-12 16:05:04 +00:00
|
|
|
int type, int my_write (const unsigned char *data, int len));
|
2006-07-19 21:46:06 +00:00
|
|
|
|
2006-07-22 09:59:44 +00:00
|
|
|
/* Send MPEG <type> PS packet */
|
|
|
|
int send_mpeg_ps_packet (unsigned char *data, int len, int id, uint64_t pts,
|
2008-01-12 16:05:04 +00:00
|
|
|
int type,int my_write (const unsigned char *data, int len));
|
2006-07-19 21:46:06 +00:00
|
|
|
|
2006-07-22 09:59:44 +00:00
|
|
|
/* Send MPEG 2 LPCM packet */
|
2006-07-19 21:46:06 +00:00
|
|
|
int send_mpeg_lpcm_packet (unsigned char *data, int len,
|
|
|
|
int id, uint64_t pts, int freq_id,
|
2008-01-12 16:05:04 +00:00
|
|
|
int my_write (const unsigned char *data, int len));
|
2006-07-19 21:46:06 +00:00
|
|
|
|
2008-02-22 09:09:46 +00:00
|
|
|
#endif /* MPLAYER_MPEG_PACKETIZER_H */
|