blob: 924105c77ca930a7b9473f8c80aa498882d0fb76 [file] [log] [blame]
// Copyright 2019 The Fuchsia Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef SRC_MEDIA_CODEC_EXAMPLES_USE_MEDIA_DECODER_IN_STREAM_FILE_H_
#define SRC_MEDIA_CODEC_EXAMPLES_USE_MEDIA_DECODER_IN_STREAM_FILE_H_
#include <fstream>
#include "in_stream.h"
#include "util.h"
class InStreamFile : public InStream {
public:
explicit InStreamFile(async::Loop* fidl_loop, thrd_t fidl_thread,
sys::ComponentContext* component_context, std::string input_file_name);
~InStreamFile() override;
private:
zx_status_t ReadBytesInternal(uint32_t max_bytes_to_read, uint32_t* bytes_read_out,
uint8_t* buffer_out, zx::time deadline) override;
zx_status_t ResetToStartInternal(zx::time just_fail_deadline) override;
std::string input_file_name_;
std::ifstream file_;
};
#endif // SRC_MEDIA_CODEC_EXAMPLES_USE_MEDIA_DECODER_IN_STREAM_FILE_H_