Remove deprecated CreateFromIvfFileFrameGenerator.

Change-Id: Ic33c1fa0a61a8e4f35f951f0334df71f34cb212b
Bug: b/378855419
Reviewed-on: https://webrtc-review.googlesource.com/c/src/+/368161
Commit-Queue: Jeremy Leconte <jleconte@webrtc.org>
Reviewed-by: Mirko Bonadei <mbonadei@webrtc.org>
Cr-Commit-Position: refs/heads/main@{#43391}
This commit is contained in:
Jeremy Leconte 2024-11-13 13:44:40 +01:00 committed by WebRTC LUCI CQ
parent c3021aece3
commit 019bca9590
2 changed files with 0 additions and 9 deletions

View File

@ -73,11 +73,6 @@ std::unique_ptr<FrameGeneratorInterface> CreateFromNV12FileFrameGenerator(
frame_repeat_count);
}
std::unique_ptr<FrameGeneratorInterface> CreateFromIvfFileFrameGenerator(
std::string filename) {
return CreateFromIvfFileFrameGenerator(CreateEnvironment(), filename);
}
absl::Nonnull<std::unique_ptr<FrameGeneratorInterface>>
CreateFromIvfFileFrameGenerator(const Environment& env,
absl::string_view filename) {

View File

@ -55,10 +55,6 @@ std::unique_ptr<FrameGeneratorInterface> CreateFromNV12FileFrameGenerator(
size_t height,
int frame_repeat_count = 1);
// Creates a frame generator that repeatedly plays an ivf file.
[[deprecated]] std::unique_ptr<FrameGeneratorInterface>
CreateFromIvfFileFrameGenerator(std::string filename);
absl::Nonnull<std::unique_ptr<FrameGeneratorInterface>>
CreateFromIvfFileFrameGenerator(const Environment& env,
absl::string_view filename);