encoders/prores_aw: Fix warnings and formatting

This commit is contained in:
Michael Fabian 'Xaymar' Dirks
2019-07-06 13:07:31 +02:00
parent 3154443e18
commit 93c6f0b35a
2 changed files with 14 additions and 15 deletions
+4 -4
View File
@@ -241,9 +241,9 @@ obsffmpeg::encoder::prores_aw::~prores_aw()
}
}
void obsffmpeg::encoder::prores_aw::get_properties(obs_properties_t* props) {}
void obsffmpeg::encoder::prores_aw::get_properties(obs_properties_t*) {}
bool obsffmpeg::encoder::prores_aw::update(obs_data_t* settings)
bool obsffmpeg::encoder::prores_aw::update(obs_data_t*)
{
return false;
}
@@ -258,12 +258,12 @@ bool obsffmpeg::encoder::prores_aw::get_extra_data(uint8_t** extra_data, size_t*
return true;
}
bool obsffmpeg::encoder::prores_aw::get_sei_data(uint8_t** sei_data, size_t* size)
bool obsffmpeg::encoder::prores_aw::get_sei_data(uint8_t**, size_t*)
{
return false;
}
void obsffmpeg::encoder::prores_aw::get_video_info(video_scale_info* info)
void obsffmpeg::encoder::prores_aw::get_video_info(video_scale_info*)
{
return;
}