obs-ffmpeg: Fix custom audio codec parameters

This commit is contained in:
Richard Stanway
2017-02-16 21:44:08 +01:00
parent 4303253920
commit f86c538a5f

View File

@@ -276,7 +276,7 @@ static bool create_video_stream(struct ffmpeg_data *data)
static bool open_audio_codec(struct ffmpeg_data *data)
{
AVCodecContext *context = data->audio->codec;
char **opts = strlist_split(data->config.video_settings, ' ', false);
char **opts = strlist_split(data->config.audio_settings, ' ', false);
int ret;
if (opts) {