summaryrefslogtreecommitdiffstats
path: root/demux/demux.c
diff options
context:
space:
mode:
authorwm4 <wm4@nowhere>2014-07-05 16:45:28 +0200
committerwm4 <wm4@nowhere>2014-07-05 17:07:14 +0200
commita97256c1d58fae714ae94301ab09044081d08c8e (patch)
treeece20e0f51153ea2266490dad64163ee91d3c006 /demux/demux.c
parente4221f318936aa970eeb1d220d8deae95fb91d98 (diff)
downloadmpv-a97256c1d58fae714ae94301ab09044081d08c8e.tar.bz2
mpv-a97256c1d58fae714ae94301ab09044081d08c8e.tar.xz
demux: move packet functions to a separate source file
Diffstat (limited to 'demux/demux.c')
-rw-r--r--demux/demux.c100
1 files changed, 0 insertions, 100 deletions
diff --git a/demux/demux.c b/demux/demux.c
index f2310d2aa7..c45575f755 100644
--- a/demux/demux.c
+++ b/demux/demux.c
@@ -29,7 +29,6 @@
#include "config.h"
#include "options/options.h"
-#include "common/av_common.h"
#include "talloc.h"
#include "common/msg.h"
#include "common/global.h"
@@ -41,8 +40,6 @@
#include "audio/format.h"
-#include <libavcodec/avcodec.h>
-
// Demuxer list
extern const struct demuxer_desc demuxer_desc_edl;
extern const struct demuxer_desc demuxer_desc_cue;
@@ -106,103 +103,6 @@ static void ds_free_packs(struct demux_stream *ds)
ds->eof = 0;
}
-static void packet_destroy(void *ptr)
-{
- struct demux_packet *dp = ptr;
- talloc_free(dp->avpacket);
- av_free(dp->allocation);
-}
-
-static struct demux_packet *create_packet(size_t len)
-{
- if (len > 1000000000) {
- fprintf(stderr, "Attempt to allocate demux packet over 1 GB!\n");
- abort();
- }
- struct demux_packet *dp = talloc(NULL, struct demux_packet);
- talloc_set_destructor(dp, packet_destroy);
- *dp = (struct demux_packet) {
- .len = len,
- .pts = MP_NOPTS_VALUE,
- .dts = MP_NOPTS_VALUE,
- .duration = -1,
- .stream_pts = MP_NOPTS_VALUE,
- .pos = -1,
- .stream = -1,
- };
- return dp;
-}
-
-struct demux_packet *new_demux_packet(size_t len)
-{
- struct demux_packet *dp = create_packet(len);
- dp->buffer = av_malloc(len + FF_INPUT_BUFFER_PADDING_SIZE);
- if (!dp->buffer) {
- fprintf(stderr, "Memory allocation failure!\n");
- abort();
- }
- memset(dp->buffer + len, 0, FF_INPUT_BUFFER_PADDING_SIZE);
- dp->allocation = dp->buffer;
- return dp;
-}
-
-// data must already have suitable padding, and does not copy the data
-struct demux_packet *new_demux_packet_fromdata(void *data, size_t len)
-{
- struct demux_packet *dp = create_packet(len);
- dp->buffer = data;
- return dp;
-}
-
-struct demux_packet *new_demux_packet_from(void *data, size_t len)
-{
- struct demux_packet *dp = new_demux_packet(len);
- memcpy(dp->buffer, data, len);
- return dp;
-}
-
-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);
-}
-
-static void destroy_avpacket(void *pkt)
-{
- av_free_packet(pkt);
-}
-
-struct demux_packet *demux_copy_packet(struct demux_packet *dp)
-{
- struct demux_packet *new = NULL;
- if (dp->avpacket) {
- assert(dp->buffer == dp->avpacket->data);
- assert(dp->len == dp->avpacket->size);
- AVPacket *newavp = talloc_zero(NULL, AVPacket);
- talloc_set_destructor(newavp, destroy_avpacket);
- av_init_packet(newavp);
- if (av_packet_ref(newavp, dp->avpacket) < 0)
- abort();
- new = new_demux_packet_fromdata(newavp->data, newavp->size);
- new->avpacket = newavp;
- }
- if (!new) {
- new = new_demux_packet(dp->len);
- memcpy(new->buffer, dp->buffer, new->len);
- }
- new->pts = dp->pts;
- new->dts = dp->dts;
- new->duration = dp->duration;
- new->stream_pts = dp->stream_pts;
- return new;
-}
-
struct sh_stream *new_sh_stream(demuxer_t *demuxer, enum stream_type type)
{
if (demuxer->num_streams > MAX_SH_STREAMS) {