Remove an unused struct variable.

This commit is contained in:
Nils Hasenbanck 2020-01-08 21:06:28 +01:00
parent 40ecfbcdfa
commit a82582e859

View File

@ -1,6 +1,5 @@
#include "packet_buffer.h"
struct AVPacketNode {
AVPacket *data;
struct AVPacketNode *next;
@ -12,8 +11,6 @@ struct packet_buffer
{
AVPacketNode_t *head;
AVPacketNode_t *tail;
size_t capacity;
size_t size;
};