mirror of
https://github.com/xenia-project/FFmpeg.git
synced 2024-11-24 12:09:55 +00:00
doc/examples: use system headers in decoding_encoding and muxing.
All the other examples already use the system installed headers.
This commit is contained in:
parent
136ca0e5f8
commit
6c211085bb
@ -31,11 +31,11 @@
|
|||||||
|
|
||||||
#include <math.h>
|
#include <math.h>
|
||||||
|
|
||||||
#include "libavutil/imgutils.h"
|
#include <libavutil/imgutils.h>
|
||||||
#include "libavutil/opt.h"
|
#include <libavutil/opt.h>
|
||||||
#include "libavcodec/avcodec.h"
|
#include <libavcodec/avcodec.h>
|
||||||
#include "libavutil/mathematics.h"
|
#include <libavutil/mathematics.h>
|
||||||
#include "libavutil/samplefmt.h"
|
#include <libavutil/samplefmt.h>
|
||||||
|
|
||||||
#define INBUF_SIZE 4096
|
#define INBUF_SIZE 4096
|
||||||
#define AUDIO_INBUF_SIZE 20480
|
#define AUDIO_INBUF_SIZE 20480
|
||||||
|
@ -33,9 +33,9 @@
|
|||||||
#include <string.h>
|
#include <string.h>
|
||||||
#include <math.h>
|
#include <math.h>
|
||||||
|
|
||||||
#include "libavutil/mathematics.h"
|
#include <libavutil/mathematics.h>
|
||||||
#include "libavformat/avformat.h"
|
#include <libavformat/avformat.h>
|
||||||
#include "libswscale/swscale.h"
|
#include <libswscale/swscale.h>
|
||||||
|
|
||||||
#undef exit
|
#undef exit
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user