diff options
author | Hendrik Leppkes <h.leppkes@gmail.com> | 2012-10-19 21:35:39 +0200 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2012-10-20 01:56:50 +0200 |
commit | 953a3dcc4e28995072a1148e9d533e8d7b32248c (patch) | |
tree | 6f144fb870c9ab510c105e054f3b1b9fb100c453 /libavcodec | |
parent | 33f2a4942380184f3a28cbf2a36366c8ed105232 (diff) | |
download | ffmpeg-953a3dcc4e28995072a1148e9d533e8d7b32248c.tar.gz |
Mark data symbols shared between libraries with av_export
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavcodec')
-rw-r--r-- | libavcodec/dnxhddata.h | 3 | ||||
-rw-r--r-- | libavcodec/raw.h | 3 |
2 files changed, 4 insertions, 2 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); diff --git a/libavcodec/raw.h b/libavcodec/raw.h index b704b9cee8..87b6c901ca 100644 --- a/libavcodec/raw.h +++ b/libavcodec/raw.h @@ -28,13 +28,14 @@ #define AVCODEC_RAW_H #include "avcodec.h" +#include "libavutil/internal.h" typedef struct PixelFormatTag { enum AVPixelFormat pix_fmt; unsigned int fourcc; } PixelFormatTag; -extern const PixelFormatTag ff_raw_pix_fmt_tags[]; +extern av_export const PixelFormatTag ff_raw_pix_fmt_tags[]; enum AVPixelFormat ff_find_pix_fmt(const PixelFormatTag *tags, unsigned int fourcc); #endif /* AVCODEC_RAW_H */ |