forked from jingzhishen/StreamAnalysis
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy paththird_ffmpeg.h
33 lines (29 loc) · 819 Bytes
/
third_ffmpeg.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
#ifndef THIRDFFMPEG_H
#define THIRDFFMPEG_H
#ifndef INT64_C
#define INT64_C(c) (c ## LL)
#endif
#ifndef UINT64_C
#define UINT64_C(c) (c ## ULL)
#endif
extern "C"
{
#include "libavutil/avstring.h"
//#include "libavutil/colorspace.h"
#include "libavutil/mathematics.h"
#include "libavutil/pixdesc.h"
#include "libavutil/imgutils.h"
#include "libavutil/dict.h"
#include "libavutil/parseutils.h"
#include "libavutil/samplefmt.h"
#include "libavutil/avassert.h"
#include "libavutil/time.h"
#include "libavformat/avformat.h"
#include "libavdevice/avdevice.h"
#include "libswscale/swscale.h"
#include "libavutil/opt.h"
#include "libavcodec/avfft.h"
//#include "libavutil/buffer_internal.h"
#include "libswresample/swresample.h"
}
#endif // THIRDFFMPEG_H