From 51c3ea0f7d34a5c99b0396db54ddce19249d0b6b Mon Sep 17 00:00:00 2001 From: philippegorley <gorley.philippe@gmail.com> Date: Wed, 22 Aug 2018 16:13:36 -0400 Subject: [PATCH] audiobuffer: fix typo in log Change-Id: Iffdc97ab998e1c69b22ac0cf8d7e67517efc660b --- src/media/audio/audiobuffer.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/media/audio/audiobuffer.cpp b/src/media/audio/audiobuffer.cpp index 363f0a8b39..0f0c443aa9 100644 --- a/src/media/audio/audiobuffer.cpp +++ b/src/media/audio/audiobuffer.cpp @@ -306,7 +306,7 @@ AudioBuffer::toAVFrame() const frame->sample_rate = getSampleRate(); if (av_frame_get_buffer(frame, 0) < 0) { - RING_ERR() << "Failed to audio frame"; + RING_ERR() << "Failed to allocate audio frame"; av_frame_free(&frame); return nullptr; } -- GitLab