forked from MESAI/FFmpegRTSPServer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
FFmpegDecoder.h
77 lines (48 loc) · 1.23 KB
/
FFmpegDecoder.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
//
// FFmpegDecoder.h
// FFmpegRTSPServer
//
// Created by Mina Saad on 9/22/15.
// Copyright (c) 2015 Mina Saad. All rights reserved.
//
#ifndef MESAI_FFmpegDecoder_H
#define MESAI_FFmpegDecoder_H
#include <iostream>
#include <string>
#include <pthread.h>
#include <functional>
#include <unistd.h>
extern "C" {
#include <libavutil/mathematics.h>
#include <libavutil/imgutils.h>
#include <libswscale/swscale.h>
#include <libavutil/pixdesc.h>
#include <libavdevice/avdevice.h>
}
namespace MESAI
{
class FFmpegDecoder
{
public:
FFmpegDecoder(std::string);
~FFmpegDecoder();
void intialize();
void playMedia();
void finalize();
void setOnframeCallbackFunction(std::function<void(uint8_t *)> func);
int width;
int height;
int GOP;
int frameRate;
int bitrate;
std::function<void(uint8_t *)> onFrame;
private:
std::string path;
AVCodecContext *pCodecCtx;
AVFormatContext *pFormatCtx;
AVFrame *pFrameRGB;
struct SwsContext * img_convert_ctx;
int videoStream;
};
}
#endif