Home | History | Annotate | Download | only in src

Lines Matching refs:packed_stream_queue

37 		GQueue *packed_stream_queue);
61 self->packed_stream_queue = NULL;
151 if (self->packed_stream_queue) {
152 mix_videoformat_mp42_flush_packed_stream_queue(self->packed_stream_queue);
153 g_queue_free(self->packed_stream_queue);
155 self->packed_stream_queue = NULL;
369 self->packed_stream_queue = g_queue_new();
370 if (!self->packed_stream_queue) {
667 if (!g_queue_is_empty(self->packed_stream_queue)) {
734 g_queue_push_tail(self->packed_stream_queue,
748 if (g_queue_is_empty(self->packed_stream_queue)) {
749 /* If the packed_stream_queue is empty, everything is fine */
755 /* The packed_stream_queue is not empty, is this frame N-VOP? */
762 * Unexpected! We flush the packed_stream_queue and begin to process the
766 self->packed_stream_queue);
778 /* This is N-VOP, process B frame from the packed_stream_queue */
784 self->packed_stream_queue);
1102 self->packed_stream_queue);
1130 mix_videoformat_mp42_flush_packed_stream_queue(self->packed_stream_queue);
1394 void mix_videoformat_mp42_flush_packed_stream_queue(GQueue *packed_stream_queue) {
1398 if (packed_stream_queue == NULL) {
1401 while (!g_queue_is_empty(packed_stream_queue)) {
1402 packed_stream = (PackedStream *) g_queue_pop_head(packed_stream_queue);