aboutsummaryrefslogtreecommitdiffstats
path: root/libavformat/avformat.h
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2014-07-29 21:02:48 +0200
committerMichael Niedermayer <michaelni@gmx.at>2014-07-29 21:02:48 +0200
commit9694695a21d08ae470b2db6278f92c5c31d07b41 (patch)
tree2daaf25c601887e8f530f1a0b04876c4c4ec849b /libavformat/avformat.h
parent80a3a6611fe5866163b2e64da7c492fff7874a03 (diff)
downloadffmpeg-9694695a21d08ae470b2db6278f92c5c31d07b41.tar.gz
avformat: fix probe mime version checks
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavformat/avformat.h')
-rw-r--r--libavformat/avformat.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/avformat.h b/libavformat/avformat.h
index 8412d3a31b..156524a688 100644
--- a/libavformat/avformat.h
+++ b/libavformat/avformat.h
@@ -393,7 +393,7 @@ typedef struct AVProbeData {
const char *filename;
unsigned char *buf; /**< Buffer must have AVPROBE_PADDING_SIZE of extra allocated bytes filled with zero. */
int buf_size; /**< Size of buf except extra allocated bytes */
-#ifdef FF_API_PROBE_MIME
+#if FF_API_PROBE_MIME
uint8_t *mime_type; /**< mime_type, when known. */
#endif
} AVProbeData;