diff options
author | Clément Bœsch <ubitux@gmail.com> | 2012-09-16 02:58:40 +0200 |
---|---|---|
committer | Clément Bœsch <ubitux@gmail.com> | 2012-09-16 02:58:40 +0200 |
commit | ca81e3b6e779d2e15c7e2ef28d150346833bd803 (patch) | |
tree | 7e180748c8b8d659c519bb6a95a8ba4b3a5c31ce /libavformat/matroska.c | |
parent | 8b052207271cddc175e01c05af8c0b05e24d117c (diff) | |
download | ffmpeg-streaming-ca81e3b6e779d2e15c7e2ef28d150346833bd803.zip ffmpeg-streaming-ca81e3b6e779d2e15c7e2ef28d150346833bd803.tar.gz |
lavf/mkv: prefix video stereo arrays with ff_.
Diffstat (limited to 'libavformat/matroska.c')
-rw-r--r-- | libavformat/matroska.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavformat/matroska.c b/libavformat/matroska.c index e13acff..fccacc7 100644 --- a/libavformat/matroska.c +++ b/libavformat/matroska.c @@ -104,7 +104,7 @@ const AVMetadataConv ff_mkv_metadata_conv[] = { { 0 } }; -const char * const matroska_video_stereo_mode[MATROSKA_VIDEO_STEREO_MODE_COUNT] = { +const char * const ff_matroska_video_stereo_mode[MATROSKA_VIDEO_STEREO_MODE_COUNT] = { "mono", "left_right", "bottom_top", @@ -122,7 +122,7 @@ const char * const matroska_video_stereo_mode[MATROSKA_VIDEO_STEREO_MODE_COUNT] "block_rl", }; -const char * const matroska_video_stereo_plane[MATROSKA_VIDEO_STEREO_PLANE_COUNT] = { +const char * const ff_matroska_video_stereo_plane[MATROSKA_VIDEO_STEREO_PLANE_COUNT] = { "left", "right", "background", |