Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in / Register
Toggle navigation
F
ffmpeg.wasm-core
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Linshizhi
ffmpeg.wasm-core
Commits
953a3dcc
Commit
953a3dcc
authored
Oct 19, 2012
by
Hendrik Leppkes
Committed by
Michael Niedermayer
Oct 19, 2012
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Mark data symbols shared between libraries with av_export
Signed-off-by:
Michael Niedermayer
<
michaelni@gmx.at
>
parent
33f2a494
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
7 additions
and
4 deletions
+7
-4
dnxhddata.h
libavcodec/dnxhddata.h
+2
-1
raw.h
libavcodec/raw.h
+2
-1
xga_font_data.h
libavutil/xga_font_data.h
+3
-2
No files found.
libavcodec/dnxhddata.h
View file @
953a3dcc
...
...
@@ -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
);
...
...
libavcodec/raw.h
View file @
953a3dcc
...
...
@@ -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 */
libavutil/xga_font_data.h
View file @
953a3dcc
...
...
@@ -27,8 +27,9 @@
#define AVUTIL_XGA_FONT_DATA_H
#include <stdint.h>
#include "internal.h"
extern
const
uint8_t
avpriv_cga_font
[
2048
];
extern
const
uint8_t
avpriv_vga16_font
[
4096
];
extern
av_export
const
uint8_t
avpriv_cga_font
[
2048
];
extern
av_export
const
uint8_t
avpriv_vga16_font
[
4096
];
#endif
/* AVUTIL_XGA_FONT_DATA_H */
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment