Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.freedesktop.org/gstreamer/gst-plugins-rs.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'video/ffv1/src/ffv1dec/imp.rs')
-rw-r--r--video/ffv1/src/ffv1dec/imp.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/video/ffv1/src/ffv1dec/imp.rs b/video/ffv1/src/ffv1dec/imp.rs
index 046c23051..4b813e754 100644
--- a/video/ffv1/src/ffv1dec/imp.rs
+++ b/video/ffv1/src/ffv1dec/imp.rs
@@ -436,7 +436,7 @@ impl VideoDecoderImpl for Ffv1Dec {
.expect("Could not map input buffer for read");
let decoded_frame = decoder.decode_frame(input_buffer.as_slice()).map_err(|e| {
- gst::gst_error!(CAT, "Decoding failed: {}", e);
+ gst::error!(CAT, "Decoding failed: {}", e);
gst::FlowError::Error
})?;