Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSergey Sharybin <sergey@blender.org>2020-08-11 13:36:25 +0300
committerSergey Sharybin <sergey@blender.org>2020-08-11 13:48:33 +0300
commit1b8778e314910cea940f7850a4b86e0ffb45dd65 (patch)
tree40f63559e321d4e818d55e8c91443c3f921e4b69 /intern/ffmpeg/tests/ffmpeg_codecs.cc
parentaa4fb22cac0c8b653cc9925700bfce74dcc08574 (diff)
Cleanup: Strict compiler flags
Mainly caused by moving tests to source folder, which brings new compiler flags. Also, no need to extend include directories (to the non-existing paths, btw) since this is done by the CmakeList.txt which is in the blenlib folder.
Diffstat (limited to 'intern/ffmpeg/tests/ffmpeg_codecs.cc')
-rw-r--r--intern/ffmpeg/tests/ffmpeg_codecs.cc4
1 files changed, 4 insertions, 0 deletions
diff --git a/intern/ffmpeg/tests/ffmpeg_codecs.cc b/intern/ffmpeg/tests/ffmpeg_codecs.cc
index d3cba6d228a..9538bac84d2 100644
--- a/intern/ffmpeg/tests/ffmpeg_codecs.cc
+++ b/intern/ffmpeg/tests/ffmpeg_codecs.cc
@@ -5,6 +5,8 @@ extern "C" {
#include <libavutil/log.h>
}
+namespace {
+
bool test_vcodec(AVCodec *codec, AVPixelFormat pixelformat)
{
av_log_set_level(AV_LOG_QUIET);
@@ -108,6 +110,8 @@ bool test_codec_audio_by_name(const char *codecname, AVSampleFormat fmt)
EXPECT_TRUE(test_codec_audio_by_name(str(codec), fmt)); \
}
+} // namespace
+
/* generic codec ID's used in blender */
FFMPEG_TEST_VCODEC_ID(AV_CODEC_ID_HUFFYUV, AV_PIX_FMT_BGRA)