diff options
Diffstat (limited to 'media/base/media_posix.cc')
-rw-r--r-- | media/base/media_posix.cc | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/media/base/media_posix.cc b/media/base/media_posix.cc index 3621bd6..2c05376 100644 --- a/media/base/media_posix.cc +++ b/media/base/media_posix.cc @@ -54,11 +54,11 @@ static std::string GetDSOName(tp_ffmpeg::StubModules stub_key) { // TODO(ajwong): Remove this once mac is migrated. Either that, or have GYP // set a constant that we can switch implementations based off of. switch (stub_key) { - case tp_ffmpeg::kModuleAvcodec52: + case tp_ffmpeg::kModuleAvcodec53: return FILE_PATH_LITERAL(DSO_NAME("avcodec", AVCODEC_VERSION)); - case tp_ffmpeg::kModuleAvformat52: + case tp_ffmpeg::kModuleAvformat53: return FILE_PATH_LITERAL(DSO_NAME("avformat", AVFORMAT_VERSION)); - case tp_ffmpeg::kModuleAvutil50: + case tp_ffmpeg::kModuleAvutil51: return FILE_PATH_LITERAL(DSO_NAME("avutil", AVUTIL_VERSION)); default: LOG(DFATAL) << "Invalid stub module requested: " << stub_key; |