summaryrefslogtreecommitdiff
path: root/libavformat/matroskaenc.c
diff options
context:
space:
mode:
authorClément Bœsch <ubitux@gmail.com>2012-09-16 02:58:40 +0200
committerClément Bœsch <ubitux@gmail.com>2012-09-16 02:58:40 +0200
commitca81e3b6e779d2e15c7e2ef28d150346833bd803 (patch)
tree7e180748c8b8d659c519bb6a95a8ba4b3a5c31ce /libavformat/matroskaenc.c
parent8b052207271cddc175e01c05af8c0b05e24d117c (diff)
lavf/mkv: prefix video stereo arrays with ff_.
Diffstat (limited to 'libavformat/matroskaenc.c')
-rw-r--r--libavformat/matroskaenc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/matroskaenc.c b/libavformat/matroskaenc.c
index 79ce9f5cae..f9a812b83f 100644
--- a/libavformat/matroskaenc.c
+++ b/libavformat/matroskaenc.c
@@ -614,7 +614,7 @@ static int mkv_write_tracks(AVFormatContext *s)
uint64_t st_mode = MATROSKA_VIDEO_STEREO_MODE_COUNT;
for (j=0; j<MATROSKA_VIDEO_STEREO_MODE_COUNT; j++)
- if (!strcmp(tag->value, matroska_video_stereo_mode[j])){
+ if (!strcmp(tag->value, ff_matroska_video_stereo_mode[j])){
st_mode = j;
break;
}