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.
pull/8/head
Clément Bœsch 12 years ago
parent 391f323615
commit 52b7823b73
  1. 2
      libswresample/swresample.h
  2. 2
      libswresample/version.h

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

@ -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, \

Loading…
Cancel
Save