Skip to content

Commit

Permalink
[ci] more build fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
jcelerier committed Jan 24, 2024
1 parent a4d848c commit 0dbe5e8
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/plugins/score-plugin-gfx/Gfx/Libav/LibavEncoder.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ int LibavEncoder::start()
ret = avio_open(&m_formatContext->pb, filename.c_str(), AVIO_FLAG_WRITE);
if(ret < 0)
{
qDebug() << "Could not open" << filename.c_str() << ":" << av_to_string(ret));
qDebug() << "Could not open" << filename.c_str() << ":" << av_to_string(ret);
avformat_free_context(m_formatContext);
m_formatContext = nullptr;
return 1;
Expand Down
4 changes: 2 additions & 2 deletions src/plugins/score-plugin-gfx/Gfx/Libav/LibavOutputStream.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,9 @@ extern "C" {

#include <QApplication>

#include <string>
#include <CDSPResampler.h>

#include <r8brain-free-src/CDSPResampler.h>
#include <string>

namespace Gfx
{
Expand Down

0 comments on commit 0dbe5e8

Please sign in to comment.