summaryrefslogtreecommitdiff
path: root/libswresample/swresample.h
diff options
context:
space:
mode:
authorClément Bœsch <ubitux@gmail.com>2012-11-20 21:51:25 +0100
committerClément Bœsch <ubitux@gmail.com>2012-11-20 21:53:06 +0100
commit52b7823b737dc712ca2b2c1f5712c3a0a3705de8 (patch)
tree24ccaa204facf480ee3efd3dbe9f4e61c4208631 /libswresample/swresample.h
parent391f323615e84bca783f4fa59a02b828fd1632a8 (diff)
downloadffmpeg-52b7823b737dc712ca2b2c1f5712c3a0a3705de8.tar.gz
swr: include stdint.h instead of inttypes.h.
stdint.h is for the [u]int*_t types, which is the only thing we need for the prototypes. inttypes.h includes stdint.h and defines more thing we don't need here. Bump micro in case a user app was relying on this include for its own code.
Diffstat (limited to 'libswresample/swresample.h')
-rw-r--r--libswresample/swresample.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/libswresample/swresample.h b/libswresample/swresample.h
index 6cc9ed1c32..71a82cc54c 100644
--- a/libswresample/swresample.h
+++ b/libswresample/swresample.h
@@ -92,7 +92,7 @@
* swr_free().
*/
-#include <inttypes.h>
+#include <stdint.h>
#include "libavutil/samplefmt.h"
#include "libswresample/version.h"