summaryrefslogtreecommitdiffstats
path: root/demux/demux_packet.h
diff options
context:
space:
mode:
authorwm4 <wm4@nowhere>2013-04-14 23:01:10 +0200
committerwm4 <wm4@nowhere>2013-04-20 23:28:25 +0200
commiteb27e1462282af0c7a04b8c1cec2d6eded3dd968 (patch)
treeee0227e9ba5dc9ba59b472c0b6b362b157f0172d /demux/demux_packet.h
parent6d938f483871957a6289c97e0183d61481467538 (diff)
downloadmpv-eb27e1462282af0c7a04b8c1cec2d6eded3dd968.tar.bz2
mpv-eb27e1462282af0c7a04b8c1cec2d6eded3dd968.tar.xz
demux: remove some unused things
Diffstat (limited to 'demux/demux_packet.h')
-rw-r--r--demux/demux_packet.h2
1 files changed, 0 insertions, 2 deletions
diff --git a/demux/demux_packet.h b/demux/demux_packet.h
index db5d41402c..39f10b9b74 100644
--- a/demux/demux_packet.h
+++ b/demux/demux_packet.h
@@ -31,8 +31,6 @@ typedef struct demux_packet {
int64_t pos; // position in index (AVI) or file (MPG)
unsigned char *buffer;
bool keyframe;
- int refcount; // counter for the master packet, if 0, buffer can be free()d
- struct demux_packet *master; //in clones, pointer to the master packet
struct demux_packet *next;
struct AVPacket *avpacket; // original libavformat packet (demux_lavf)
} demux_packet_t;