Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2014-04-25 03:56:15 +0400
committerMichael Niedermayer <michaelni@gmx.at>2014-04-25 03:56:23 +0400
commite148a5820dc5e7077f519d091b5e1ff2a5b23665 (patch)
tree451f39876420d8b1fd8faa0e15f8ae0f349955cc /libavutil/internal.h
parent817627d925384a55dd04d3427b4791e04bb98899 (diff)
parent18e7e21e2fb151d9dc01b6131b58dfc00715a69b (diff)
Merge remote-tracking branch 'cehoyos/master'
* cehoyos/master: Enable muxing ac-3 in caf. Use correct msvc type specifiers for ptrdiff_t and size_t. Fix vf_eq.c and vf_eq2.c compilation with !HAVE_6REGS. Fix libpostproc compilation with !HAVE_6REGS. Never write 0 as maximum bitrate for asf files. Merged-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavutil/internal.h')
-rw-r--r--libavutil/internal.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/libavutil/internal.h b/libavutil/internal.h
index 9a04fa5a2f..53f78e9d81 100644
--- a/libavutil/internal.h
+++ b/libavutil/internal.h
@@ -238,6 +238,11 @@ void avpriv_request_sample(void *avc,
#if HAVE_LIBC_MSVCRT
#define avpriv_open ff_open
+#define PTRDIFF_SPECIFIER "Id"
+#define SIZE_SPECIFIER "Iu"
+#else
+#define PTRDIFF_SPECIFIER "td"
+#define SIZE_SPECIFIER "zu"
#endif
/**