diff options
author | Clément Bœsch <ubitux@gmail.com> | 2012-05-12 17:26:01 +0200 |
---|---|---|
committer | Clément Bœsch <ubitux@gmail.com> | 2012-05-19 12:28:58 +0200 |
commit | 6c211085bb66aabe196d1646abbbf3c4ced914df (patch) | |
tree | add5855df6e91776c1e7f9c1c27821ec2ebaaab0 /doc/examples/muxing.c | |
parent | 136ca0e5f86b9aa93e47fa98f3bfe3c3cba376f1 (diff) | |
download | ffmpeg-6c211085bb66aabe196d1646abbbf3c4ced914df.tar.gz |
doc/examples: use system headers in decoding_encoding and muxing.
All the other examples already use the system installed headers.
Diffstat (limited to 'doc/examples/muxing.c')
-rw-r--r-- | doc/examples/muxing.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/doc/examples/muxing.c b/doc/examples/muxing.c index 9d338dee67..a24c447a96 100644 --- a/doc/examples/muxing.c +++ b/doc/examples/muxing.c @@ -33,9 +33,9 @@ #include <string.h> #include <math.h> -#include "libavutil/mathematics.h" -#include "libavformat/avformat.h" -#include "libswscale/swscale.h" +#include <libavutil/mathematics.h> +#include <libavformat/avformat.h> +#include <libswscale/swscale.h> #undef exit |