2011-08-20 17:25:43 +00:00
|
|
|
/*
|
|
|
|
* This file is part of mplayer2.
|
|
|
|
*
|
|
|
|
* mplayer2 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.
|
|
|
|
*
|
|
|
|
* mplayer2 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 mplayer2; if not, write to the Free Software Foundation, Inc.,
|
|
|
|
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef MPLAYER_DEMUX_PACKET_H
|
|
|
|
#define MPLAYER_DEMUX_PACKET_H
|
|
|
|
|
2012-07-24 21:23:27 +00:00
|
|
|
#include <stdbool.h>
|
2014-07-05 14:45:28 +00:00
|
|
|
#include <stddef.h>
|
2013-11-18 17:46:44 +00:00
|
|
|
#include <inttypes.h>
|
2011-08-20 17:25:43 +00:00
|
|
|
|
|
|
|
// Holds one packet/frame/whatever
|
|
|
|
typedef struct demux_packet {
|
|
|
|
int len;
|
|
|
|
double pts;
|
2013-11-25 22:13:01 +00:00
|
|
|
double dts;
|
2011-08-20 17:25:43 +00:00
|
|
|
double duration;
|
2013-11-16 20:04:28 +00:00
|
|
|
int64_t pos; // position in source file byte stream
|
2011-08-20 17:25:43 +00:00
|
|
|
unsigned char *buffer;
|
2012-07-24 21:23:27 +00:00
|
|
|
bool keyframe;
|
2013-11-16 20:28:59 +00:00
|
|
|
int stream; // source stream index
|
2011-08-20 17:25:43 +00:00
|
|
|
struct demux_packet *next;
|
2014-08-24 15:45:28 +00:00
|
|
|
struct AVPacket *avpacket; // keep the buffer allocation
|
2011-08-20 17:25:43 +00:00
|
|
|
} demux_packet_t;
|
|
|
|
|
2014-07-05 14:45:28 +00:00
|
|
|
struct demux_packet *new_demux_packet(size_t len);
|
2014-08-24 15:45:28 +00:00
|
|
|
struct demux_packet *new_demux_packet_from_avpacket(struct AVPacket *avpkt);
|
2014-07-05 14:45:28 +00:00
|
|
|
struct demux_packet *new_demux_packet_from(void *data, size_t len);
|
|
|
|
void demux_packet_shorten(struct demux_packet *dp, size_t len);
|
|
|
|
void free_demux_packet(struct demux_packet *dp);
|
|
|
|
struct demux_packet *demux_copy_packet(struct demux_packet *dp);
|
|
|
|
|
2014-11-03 19:00:34 +00:00
|
|
|
int demux_packet_set_padding(struct demux_packet *dp, int start, int end);
|
|
|
|
|
2011-08-20 17:25:43 +00:00
|
|
|
#endif /* MPLAYER_DEMUX_PACKET_H */
|