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
09525f79
Commit
09525f79
authored
May 24, 2011
by
Aurelien Jacobs
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
matroska: improve declaration of video_stereo_* constant tables
parent
b44bbf90
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
7 deletions
+7
-7
matroska.c
libavformat/matroska.c
+2
-2
matroska.h
libavformat/matroska.h
+5
-5
No files found.
libavformat/matroska.c
View file @
09525f79
...
@@ -100,7 +100,7 @@ const AVMetadataConv ff_mkv_metadata_conv[] = {
...
@@ -100,7 +100,7 @@ const AVMetadataConv ff_mkv_metadata_conv[] = {
{
0
}
{
0
}
};
};
const
char
const
*
matroska_video_stereo_mode
[
]
=
{
const
char
*
const
matroska_video_stereo_mode
[
MATROSKA_VIDEO_STEREO_MODE_COUNT
]
=
{
"mono"
,
"mono"
,
"left_right"
,
"left_right"
,
"bottom_top"
,
"bottom_top"
,
...
@@ -118,7 +118,7 @@ const char const *matroska_video_stereo_mode[] = {
...
@@ -118,7 +118,7 @@ const char const *matroska_video_stereo_mode[] = {
"block_rl"
,
"block_rl"
,
};
};
const
char
const
*
matroska_video_stereo_plane
[
]
=
{
const
char
*
const
matroska_video_stereo_plane
[
MATROSKA_VIDEO_STEREO_PLANE_COUNT
]
=
{
"left"
,
"left"
,
"right"
,
"right"
,
"background"
,
"background"
,
...
...
libavformat/matroska.h
View file @
09525f79
...
@@ -240,13 +240,13 @@ typedef struct CodecMime{
...
@@ -240,13 +240,13 @@ typedef struct CodecMime{
/* max. depth in the EBML tree structure */
/* max. depth in the EBML tree structure */
#define EBML_MAX_DEPTH 16
#define EBML_MAX_DEPTH 16
#define MATROSKA_VIDEO_STEREO_MODE_COUNT 15
#define MATROSKA_VIDEO_STEREO_PLANE_COUNT 3
extern
const
CodecTags
ff_mkv_codec_tags
[];
extern
const
CodecTags
ff_mkv_codec_tags
[];
extern
const
CodecMime
ff_mkv_mime_tags
[];
extern
const
CodecMime
ff_mkv_mime_tags
[];
extern
const
AVMetadataConv
ff_mkv_metadata_conv
[];
extern
const
AVMetadataConv
ff_mkv_metadata_conv
[];
extern
const
char
const
*
matroska_video_stereo_mode
[];
extern
const
char
*
const
matroska_video_stereo_mode
[
MATROSKA_VIDEO_STEREO_MODE_COUNT
];
extern
const
char
const
*
matroska_video_stereo_plane
[];
extern
const
char
*
const
matroska_video_stereo_plane
[
MATROSKA_VIDEO_STEREO_PLANE_COUNT
];
#define MATROSKA_VIDEO_STEREO_MODE_COUNT 15
#define MATROSKA_VIDEO_STEREO_PLANE_COUNT 3
#endif
/* AVFORMAT_MATROSKA_H */
#endif
/* AVFORMAT_MATROSKA_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