summaryrefslogtreecommitdiff
path: root/test/video_source.h
diff options
context:
space:
mode:
Diffstat (limited to 'test/video_source.h')
-rw-r--r--test/video_source.h9
1 files changed, 0 insertions, 9 deletions
diff --git a/test/video_source.h b/test/video_source.h
index 4250cb74b..6d1855ae3 100644
--- a/test/video_source.h
+++ b/test/video_source.h
@@ -50,15 +50,6 @@ static FILE *OpenTestDataFile(const std::string& file_name) {
return fopen(path_to_source.c_str(), "rb");
}
-static FILE *OpenTestOutFile(const std::string& file_name) {
- const std::string path_to_source = GetDataPath() + "/" + file_name;
- return fopen(path_to_source.c_str(), "wb");
-}
-
-static FILE *OpenTempOutFile() {
- return tmpfile();
-}
-
// Abstract base class for test video sources, which provide a stream of
// vpx_image_t images with associated timestamps and duration.
class VideoSource {