2017-12-12 22:12:07 +08:00
|
|
|
#ifndef FRAMES_H
|
|
|
|
#define FRAMES_H
|
|
|
|
|
2017-12-16 00:34:16 +08:00
|
|
|
#include <SDL2/SDL_mutex.h>
|
|
|
|
#include <SDL2/SDL_stdinc.h>
|
2017-12-12 22:12:07 +08:00
|
|
|
|
2018-02-07 19:25:52 +08:00
|
|
|
#include "config.h"
|
|
|
|
|
2017-12-12 22:12:07 +08:00
|
|
|
// forward declarations
|
|
|
|
typedef struct AVFrame AVFrame;
|
|
|
|
|
|
|
|
struct frames {
|
|
|
|
AVFrame *decoding_frame;
|
|
|
|
AVFrame *rendering_frame;
|
|
|
|
SDL_mutex *mutex;
|
2018-02-07 19:25:52 +08:00
|
|
|
#ifndef SKIP_FRAMES
|
2017-12-12 22:12:07 +08:00
|
|
|
SDL_cond *rendering_frame_consumed_cond;
|
2018-02-07 19:25:52 +08:00
|
|
|
#endif
|
2017-12-12 22:12:07 +08:00
|
|
|
SDL_bool rendering_frame_consumed;
|
|
|
|
};
|
|
|
|
|
2017-12-15 18:27:11 +08:00
|
|
|
SDL_bool frames_init(struct frames *frames);
|
2017-12-12 22:12:07 +08:00
|
|
|
void frames_destroy(struct frames *frames);
|
|
|
|
|
2018-02-09 02:23:24 +08:00
|
|
|
// set the decoder frame as ready for rendering
|
|
|
|
// this function locks frames->mutex during its execution
|
|
|
|
// returns true if the previous frame had been consumed
|
|
|
|
SDL_bool frames_offer_decoded_frame(struct frames *frames);
|
|
|
|
|
|
|
|
// mark the rendering frame as consumed and return it
|
|
|
|
// MUST be called with frames->mutex locked!!!
|
|
|
|
// the caller is expected to render the returned frame to some texture before
|
|
|
|
// unlocking frames->mutex
|
|
|
|
const AVFrame *frames_consume_rendered_frame(struct frames *frames);
|
2017-12-12 22:12:07 +08:00
|
|
|
|
|
|
|
#endif
|