MCPcopy Create free account
hub / github.com/FFmpeg/FFmpeg / frame_queue_push

Function frame_queue_push

fftools/ffplay.c:778–786  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

776}
777
778static void frame_queue_push(FrameQueue *f)
779{
780 if (++f->windex == f->max_size)
781 f->windex = 0;
782 SDL_LockMutex(f->mutex);
783 f->size++;
784 SDL_CondSignal(f->cond);
785 SDL_UnlockMutex(f->mutex);
786}
787
788static void frame_queue_next(FrameQueue *f)
789{

Callers 3

queue_pictureFunction · 0.85
audio_threadFunction · 0.85
subtitle_threadFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected