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.
This commit is contained in:
Clément Bœsch 2012-11-20 21:51:25 +01:00
parent 391f323615
commit 52b7823b73
2 changed files with 2 additions and 2 deletions

View File

@ -92,7 +92,7 @@
* swr_free().
*/
#include <inttypes.h>
#include <stdint.h>
#include "libavutil/samplefmt.h"
#include "libswresample/version.h"

View File

@ -30,7 +30,7 @@
#define LIBSWRESAMPLE_VERSION_MAJOR 0
#define LIBSWRESAMPLE_VERSION_MINOR 17
#define LIBSWRESAMPLE_VERSION_MICRO 100
#define LIBSWRESAMPLE_VERSION_MICRO 101
#define LIBSWRESAMPLE_VERSION_INT AV_VERSION_INT(LIBSWRESAMPLE_VERSION_MAJOR, \
LIBSWRESAMPLE_VERSION_MINOR, \