summaryrefslogtreecommitdiffstats
path: root/libavcodec/audio_frame_queue.h
diff options
context:
space:
mode:
Diffstat (limited to 'libavcodec/audio_frame_queue.h')
-rw-r--r--libavcodec/audio_frame_queue.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/libavcodec/audio_frame_queue.h b/libavcodec/audio_frame_queue.h
index 4a29770..7e98afe 100644
--- a/libavcodec/audio_frame_queue.h
+++ b/libavcodec/audio_frame_queue.h
@@ -27,15 +27,15 @@
typedef struct AudioFrame {
int64_t pts;
int duration;
- struct AudioFrame *next;
} AudioFrame;
typedef struct AudioFrameQueue {
AVCodecContext *avctx;
- int64_t next_pts;
int remaining_delay;
int remaining_samples;
- AudioFrame *frame_queue;
+ AudioFrame *frames;
+ unsigned frame_count;
+ unsigned frame_alloc;
} AudioFrameQueue;
/**
OpenPOWER on IntegriCloud