summaryrefslogtreecommitdiff
path: root/libavcodec/dnxhddata.h
diff options
context:
space:
mode:
authorHendrik Leppkes <h.leppkes@gmail.com>2012-10-19 21:35:39 +0200
committerMichael Niedermayer <michaelni@gmx.at>2012-10-20 01:56:50 +0200
commit953a3dcc4e28995072a1148e9d533e8d7b32248c (patch)
tree6f144fb870c9ab510c105e054f3b1b9fb100c453 /libavcodec/dnxhddata.h
parent33f2a4942380184f3a28cbf2a36366c8ed105232 (diff)
Mark data symbols shared between libraries with av_export
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavcodec/dnxhddata.h')
-rw-r--r--libavcodec/dnxhddata.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/libavcodec/dnxhddata.h b/libavcodec/dnxhddata.h
index 6ebee3d0f3..01c3f58fd9 100644
--- a/libavcodec/dnxhddata.h
+++ b/libavcodec/dnxhddata.h
@@ -24,6 +24,7 @@
#include <stdint.h>
#include "avcodec.h"
+#include "libavutil/internal.h"
typedef struct CIDEntry {
int cid;
@@ -44,7 +45,7 @@ typedef struct CIDEntry {
int bit_rates[5]; ///< Helpher to choose variants, rounded to nearest 5Mb/s
} CIDEntry;
-extern const CIDEntry ff_dnxhd_cid_table[];
+extern av_export const CIDEntry ff_dnxhd_cid_table[];
int ff_dnxhd_get_cid_table(int cid);
int ff_dnxhd_find_cid(AVCodecContext *avctx, int bit_depth);