pans
2017-08-30 71c92f101b6c8b4a678a8c3cfe2d8edbf488efa4
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