2017-12-12 15:12:07 +01:00
|
|
|
#ifndef DECODER_H
|
|
|
|
#define DECODER_H
|
|
|
|
|
2019-03-02 23:52:22 +01:00
|
|
|
#include <stdbool.h>
|
2019-03-02 16:43:43 +01:00
|
|
|
#include <libavformat/avformat.h>
|
2017-12-12 15:12:07 +01:00
|
|
|
|
2019-09-29 22:36:56 +02:00
|
|
|
#include "config.h"
|
|
|
|
|
2019-03-02 15:16:55 +01:00
|
|
|
struct video_buffer;
|
2017-12-12 15:12:07 +01:00
|
|
|
|
|
|
|
struct decoder {
|
2019-03-02 15:16:55 +01:00
|
|
|
struct video_buffer *video_buffer;
|
2019-03-02 16:43:43 +01:00
|
|
|
AVCodecContext *codec_ctx;
|
2017-12-12 15:12:07 +01:00
|
|
|
};
|
|
|
|
|
2019-03-02 20:09:56 +01:00
|
|
|
void
|
|
|
|
decoder_init(struct decoder *decoder, struct video_buffer *vb);
|
2019-03-02 16:43:43 +01:00
|
|
|
|
2019-03-02 23:52:22 +01:00
|
|
|
bool
|
2019-03-03 11:59:31 +01:00
|
|
|
decoder_open(struct decoder *decoder, const AVCodec *codec);
|
2019-03-02 16:43:43 +01:00
|
|
|
|
2019-03-02 20:09:56 +01:00
|
|
|
void
|
|
|
|
decoder_close(struct decoder *decoder);
|
|
|
|
|
2019-03-02 23:52:22 +01:00
|
|
|
bool
|
2019-03-03 11:59:31 +01:00
|
|
|
decoder_push(struct decoder *decoder, const AVPacket *packet);
|
2019-03-02 20:09:56 +01:00
|
|
|
|
|
|
|
void
|
|
|
|
decoder_interrupt(struct decoder *decoder);
|
2017-12-12 15:12:07 +01:00
|
|
|
|
|
|
|
#endif
|