summaryrefslogtreecommitdiff
path: root/test/video_source.h
diff options
context:
space:
mode:
authorDmitry Kovalev <dkovalev@google.com>2014-07-02 22:23:38 -0700
committerGerrit Code Review <gerrit@gerrit.golo.chromium.org>2014-07-02 22:23:38 -0700
commit79199e465af4c61ffb2d0bf6844cf0b0fe422eb8 (patch)
tree9332a87c44c70da7aaddaa6977cb46677853fc69 /test/video_source.h
parent82dc1332af4b16d3e4ad3c4358498820637b7add (diff)
downloadlibvpx-79199e465af4c61ffb2d0bf6844cf0b0fe422eb8.tar.gz
Reverting "Adds support for reading and writing 10/12-bit y4m" for now because of Mac Build Failure.
This reverts commit 82dc1332af4b16d3e4ad3c4358498820637b7add Change-Id: I824bf42bf47c7df6985c79e451d6af913030d374
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 {