Skip to content

Commit

Permalink
Fix
Browse files Browse the repository at this point in the history
Signed-off-by: Joaquin Anton Guirao <[email protected]>
  • Loading branch information
jantonguirao committed Feb 26, 2025
1 parent e1c5b21 commit 72a4082
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions dali/operators/reader/loader/video/frames_decoder_base.cc
Original file line number Diff line number Diff line change
Expand Up @@ -283,7 +283,7 @@ FramesDecoderBase::FramesDecoderBase(const std::string &filename, bool build_ind

int ret = av_state_->OpenFile(filename);
if (ret < 0) {
DALI_WARN(make_string("Could not open video file \"", Filename(), "\", due to ",
DALI_WARN(make_string("Failed to open video file \"", Filename(), "\", due to ",
detail::av_error_string(ret)));
return;
}
Expand Down Expand Up @@ -327,7 +327,7 @@ FramesDecoderBase::FramesDecoderBase(const char *memory_file, int memory_file_si
memory_video_file_ = std::make_unique<MemoryVideoFile>(memory_file, memory_file_size);
int ret = av_state_->OpenMemoryFile(*memory_video_file_);
if (ret < 0) {
DALI_WARN(make_string("Could not open video file from memory buffer due to: ",
DALI_WARN(make_string("Failed to open video file from memory buffer due to: ",
detail::av_error_string(ret)));
return;
}
Expand Down

0 comments on commit 72a4082

Please sign in to comment.