2014-07-05 14:45:28 +00:00
|
|
|
/*
|
|
|
|
* This file is part of mpv.
|
|
|
|
*
|
|
|
|
* mpv 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.
|
|
|
|
*
|
|
|
|
* mpv 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 mpv. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <assert.h>
|
|
|
|
|
|
|
|
#include <libavcodec/avcodec.h>
|
2014-11-03 19:00:34 +00:00
|
|
|
#include <libavutil/intreadwrite.h>
|
2014-07-05 14:45:28 +00:00
|
|
|
|
2014-11-03 21:30:07 +00:00
|
|
|
#include "config.h"
|
|
|
|
|
2014-07-05 14:45:28 +00:00
|
|
|
#include "common/av_common.h"
|
|
|
|
#include "common/common.h"
|
|
|
|
|
|
|
|
#include "packet.h"
|
|
|
|
|
|
|
|
static void packet_destroy(void *ptr)
|
|
|
|
{
|
|
|
|
struct demux_packet *dp = ptr;
|
2014-08-24 15:45:28 +00:00
|
|
|
av_packet_unref(dp->avpacket);
|
2014-07-05 14:45:28 +00:00
|
|
|
}
|
|
|
|
|
2014-08-24 15:45:28 +00:00
|
|
|
// This actually preserves only data and side data, not PTS/DTS/pos/etc.
|
|
|
|
// It also allows avpkt->data==NULL with avpkt->size!=0 - the libavcodec API
|
|
|
|
// does not allow it, but we do it to simplify new_demux_packet().
|
|
|
|
struct demux_packet *new_demux_packet_from_avpacket(struct AVPacket *avpkt)
|
2014-07-05 14:45:28 +00:00
|
|
|
{
|
2014-09-16 16:11:00 +00:00
|
|
|
if (avpkt->size > 1000000000)
|
|
|
|
return NULL;
|
2014-07-05 14:45:28 +00:00
|
|
|
struct demux_packet *dp = talloc(NULL, struct demux_packet);
|
|
|
|
talloc_set_destructor(dp, packet_destroy);
|
|
|
|
*dp = (struct demux_packet) {
|
|
|
|
.pts = MP_NOPTS_VALUE,
|
|
|
|
.dts = MP_NOPTS_VALUE,
|
|
|
|
.duration = -1,
|
|
|
|
.pos = -1,
|
|
|
|
.stream = -1,
|
2014-08-24 15:45:28 +00:00
|
|
|
.avpacket = talloc_zero(dp, AVPacket),
|
2014-07-05 14:45:28 +00:00
|
|
|
};
|
2014-08-24 15:45:28 +00:00
|
|
|
av_init_packet(dp->avpacket);
|
|
|
|
int r = -1;
|
|
|
|
if (avpkt->data) {
|
|
|
|
// We hope that this function won't need/access AVPacket input padding,
|
|
|
|
// because otherwise new_demux_packet_from() wouldn't work.
|
|
|
|
r = av_packet_ref(dp->avpacket, avpkt);
|
|
|
|
} else {
|
|
|
|
r = av_new_packet(dp->avpacket, avpkt->size);
|
|
|
|
}
|
|
|
|
if (r < 0) {
|
2014-09-16 16:11:00 +00:00
|
|
|
*dp->avpacket = (AVPacket){0};
|
|
|
|
talloc_free(dp);
|
|
|
|
return NULL;
|
2014-07-05 14:45:28 +00:00
|
|
|
}
|
2014-08-24 15:45:28 +00:00
|
|
|
dp->buffer = dp->avpacket->data;
|
|
|
|
dp->len = dp->avpacket->size;
|
2014-07-05 14:45:28 +00:00
|
|
|
return dp;
|
|
|
|
}
|
|
|
|
|
2014-08-24 15:45:28 +00:00
|
|
|
// Input data doesn't need to be padded.
|
|
|
|
struct demux_packet *new_demux_packet_from(void *data, size_t len)
|
2014-07-05 14:45:28 +00:00
|
|
|
{
|
2014-09-16 16:11:00 +00:00
|
|
|
if (len > INT_MAX)
|
|
|
|
return NULL;
|
2014-08-24 15:45:28 +00:00
|
|
|
AVPacket pkt = { .data = data, .size = len };
|
|
|
|
return new_demux_packet_from_avpacket(&pkt);
|
2014-07-05 14:45:28 +00:00
|
|
|
}
|
|
|
|
|
2014-08-24 15:45:28 +00:00
|
|
|
struct demux_packet *new_demux_packet(size_t len)
|
2014-07-05 14:45:28 +00:00
|
|
|
{
|
2014-09-16 16:11:00 +00:00
|
|
|
if (len > INT_MAX)
|
|
|
|
return NULL;
|
2014-08-24 15:45:28 +00:00
|
|
|
AVPacket pkt = { .data = NULL, .size = len };
|
|
|
|
return new_demux_packet_from_avpacket(&pkt);
|
2014-07-05 14:45:28 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void demux_packet_shorten(struct demux_packet *dp, size_t len)
|
|
|
|
{
|
|
|
|
assert(len <= dp->len);
|
|
|
|
dp->len = len;
|
|
|
|
memset(dp->buffer + dp->len, 0, FF_INPUT_BUFFER_PADDING_SIZE);
|
|
|
|
}
|
|
|
|
|
|
|
|
void free_demux_packet(struct demux_packet *dp)
|
|
|
|
{
|
|
|
|
talloc_free(dp);
|
|
|
|
}
|
|
|
|
|
2015-02-05 20:52:07 +00:00
|
|
|
void demux_packet_copy_attribs(struct demux_packet *dst, struct demux_packet *src)
|
|
|
|
{
|
|
|
|
dst->pts = src->pts;
|
|
|
|
dst->dts = src->dts;
|
|
|
|
dst->duration = src->duration;
|
|
|
|
dst->pos = src->pos;
|
|
|
|
dst->keyframe = src->keyframe;
|
|
|
|
dst->stream = src->stream;
|
|
|
|
}
|
|
|
|
|
2014-07-05 14:45:28 +00:00
|
|
|
struct demux_packet *demux_copy_packet(struct demux_packet *dp)
|
|
|
|
{
|
|
|
|
struct demux_packet *new = NULL;
|
|
|
|
if (dp->avpacket) {
|
2014-08-24 15:45:28 +00:00
|
|
|
new = new_demux_packet_from_avpacket(dp->avpacket);
|
|
|
|
} else {
|
|
|
|
// Some packets might be not created by new_demux_packet*().
|
|
|
|
new = new_demux_packet_from(dp->buffer, dp->len);
|
2014-07-05 14:45:28 +00:00
|
|
|
}
|
2014-09-16 16:11:00 +00:00
|
|
|
if (!new)
|
|
|
|
return NULL;
|
2015-02-05 20:52:07 +00:00
|
|
|
demux_packet_copy_attribs(new, dp);
|
2014-07-05 14:45:28 +00:00
|
|
|
return new;
|
|
|
|
}
|
2014-11-03 19:00:34 +00:00
|
|
|
|
|
|
|
int demux_packet_set_padding(struct demux_packet *dp, int start, int end)
|
|
|
|
{
|
2014-11-03 21:30:07 +00:00
|
|
|
#if HAVE_AVFRAME_SKIP_SAMPLES
|
2014-11-03 19:00:34 +00:00
|
|
|
if (!start && !end)
|
|
|
|
return 0;
|
|
|
|
if (!dp->avpacket)
|
|
|
|
return -1;
|
|
|
|
uint8_t *p = av_packet_new_side_data(dp->avpacket, AV_PKT_DATA_SKIP_SAMPLES, 10);
|
|
|
|
if (!p)
|
|
|
|
return -1;
|
|
|
|
|
|
|
|
AV_WL32(p + 0, start);
|
|
|
|
AV_WL32(p + 4, end);
|
2014-11-03 21:30:07 +00:00
|
|
|
#endif
|
2014-11-03 19:00:34 +00:00
|
|
|
return 0;
|
|
|
|
}
|