2018-02-20 14:15:30 +03:00
|
|
|
/**
|
|
|
|
* FreeRDP: A Remote Desktop Protocol Implementation
|
|
|
|
* Digital Sound Processing - FFMPEG backend
|
|
|
|
*
|
|
|
|
* Copyright 2018 Armin Novak <armin.novak@thincast.com>
|
|
|
|
* Copyright 2018 Thincast Technologies GmbH
|
|
|
|
*
|
|
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
* you may not use this file except in compliance with the License.
|
|
|
|
* You may obtain a copy of the License at
|
|
|
|
*
|
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
*
|
|
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
* See the License for the specific language governing permissions and
|
|
|
|
* limitations under the License.
|
|
|
|
*/
|
|
|
|
|
2022-02-16 13:20:38 +03:00
|
|
|
#include <freerdp/config.h>
|
2018-02-20 14:15:30 +03:00
|
|
|
|
|
|
|
#include <freerdp/log.h>
|
|
|
|
|
|
|
|
#include <libavcodec/avcodec.h>
|
|
|
|
#include <libavutil/avutil.h>
|
|
|
|
#include <libavutil/opt.h>
|
2018-10-04 09:57:54 +03:00
|
|
|
#if defined(SWRESAMPLE_FOUND)
|
2018-10-04 04:56:20 +03:00
|
|
|
#include <libswresample/swresample.h>
|
2018-10-04 09:57:54 +03:00
|
|
|
#elif defined(AVRESAMPLE_FOUND)
|
2018-02-20 14:15:30 +03:00
|
|
|
#include <libavresample/avresample.h>
|
2018-10-04 09:57:54 +03:00
|
|
|
#else
|
|
|
|
#error "libswresample or libavresample required"
|
|
|
|
#endif
|
2018-02-20 14:15:30 +03:00
|
|
|
|
|
|
|
#include "dsp.h"
|
|
|
|
#include "dsp_ffmpeg.h"
|
|
|
|
|
|
|
|
#define TAG FREERDP_TAG("dsp.ffmpeg")
|
|
|
|
|
2022-02-14 16:59:22 +03:00
|
|
|
struct S_FREERDP_DSP_CONTEXT
|
2018-02-20 14:15:30 +03:00
|
|
|
{
|
|
|
|
AUDIO_FORMAT format;
|
|
|
|
|
|
|
|
BOOL isOpen;
|
|
|
|
BOOL encoder;
|
|
|
|
|
|
|
|
UINT32 bufferedSamples;
|
|
|
|
|
|
|
|
enum AVCodecID id;
|
|
|
|
AVCodec* codec;
|
|
|
|
AVCodecContext* context;
|
|
|
|
AVFrame* frame;
|
|
|
|
AVFrame* resampled;
|
|
|
|
AVFrame* buffered;
|
|
|
|
AVPacket* packet;
|
2018-10-04 09:57:54 +03:00
|
|
|
#if defined(SWRESAMPLE_FOUND)
|
2018-10-04 04:56:20 +03:00
|
|
|
SwrContext* rcontext;
|
2018-10-04 09:57:54 +03:00
|
|
|
#else
|
2018-02-20 14:15:30 +03:00
|
|
|
AVAudioResampleContext* rcontext;
|
2018-10-04 09:57:54 +03:00
|
|
|
#endif
|
2022-03-02 11:50:41 +03:00
|
|
|
wStream* channelmix;
|
2018-02-20 14:15:30 +03:00
|
|
|
};
|
|
|
|
|
2018-03-14 18:10:12 +03:00
|
|
|
static BOOL ffmpeg_codec_is_filtered(enum AVCodecID id, BOOL encoder)
|
|
|
|
{
|
2018-04-03 12:18:22 +03:00
|
|
|
switch (id)
|
2018-03-14 18:10:12 +03:00
|
|
|
{
|
|
|
|
#if !defined(WITH_DSP_EXPERIMENTAL)
|
2018-04-03 12:18:22 +03:00
|
|
|
|
2018-07-19 16:38:44 +03:00
|
|
|
case AV_CODEC_ID_ADPCM_IMA_OKI:
|
2018-03-14 18:10:12 +03:00
|
|
|
case AV_CODEC_ID_MP3:
|
2018-07-19 16:17:54 +03:00
|
|
|
case AV_CODEC_ID_ADPCM_MS:
|
2018-07-19 16:38:44 +03:00
|
|
|
case AV_CODEC_ID_G723_1:
|
2018-03-14 18:10:12 +03:00
|
|
|
return TRUE;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
case AV_CODEC_ID_NONE:
|
|
|
|
return TRUE;
|
|
|
|
|
2020-06-29 14:26:15 +03:00
|
|
|
case AV_CODEC_ID_GSM_MS:
|
2020-04-28 09:34:38 +03:00
|
|
|
case AV_CODEC_ID_AAC:
|
|
|
|
case AV_CODEC_ID_AAC_LATM:
|
|
|
|
#if !defined(WITH_DSP_EXPERIMENTAL)
|
|
|
|
if (encoder)
|
|
|
|
return TRUE;
|
|
|
|
#endif
|
|
|
|
return FALSE;
|
|
|
|
|
2018-03-14 18:10:12 +03:00
|
|
|
default:
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-02-20 14:15:30 +03:00
|
|
|
static enum AVCodecID ffmpeg_get_avcodec(const AUDIO_FORMAT* format)
|
|
|
|
{
|
|
|
|
const char* id;
|
|
|
|
|
|
|
|
if (!format)
|
|
|
|
return AV_CODEC_ID_NONE;
|
|
|
|
|
2018-09-25 13:04:10 +03:00
|
|
|
id = audio_format_get_tag_string(format->wFormatTag);
|
2018-02-20 14:15:30 +03:00
|
|
|
|
|
|
|
switch (format->wFormatTag)
|
|
|
|
{
|
|
|
|
case WAVE_FORMAT_UNKNOWN:
|
|
|
|
return AV_CODEC_ID_NONE;
|
|
|
|
|
|
|
|
case WAVE_FORMAT_PCM:
|
|
|
|
switch (format->wBitsPerSample)
|
|
|
|
{
|
|
|
|
case 16:
|
|
|
|
return AV_CODEC_ID_PCM_U16LE;
|
|
|
|
|
|
|
|
case 8:
|
|
|
|
return AV_CODEC_ID_PCM_U8;
|
|
|
|
|
|
|
|
default:
|
|
|
|
return AV_CODEC_ID_NONE;
|
|
|
|
}
|
|
|
|
|
|
|
|
case WAVE_FORMAT_DVI_ADPCM:
|
2018-07-19 16:38:44 +03:00
|
|
|
return AV_CODEC_ID_ADPCM_IMA_OKI;
|
2018-02-20 14:15:30 +03:00
|
|
|
|
|
|
|
case WAVE_FORMAT_ADPCM:
|
|
|
|
return AV_CODEC_ID_ADPCM_MS;
|
|
|
|
|
|
|
|
case WAVE_FORMAT_ALAW:
|
|
|
|
return AV_CODEC_ID_PCM_ALAW;
|
|
|
|
|
|
|
|
case WAVE_FORMAT_MULAW:
|
|
|
|
return AV_CODEC_ID_PCM_MULAW;
|
|
|
|
|
|
|
|
case WAVE_FORMAT_GSM610:
|
|
|
|
return AV_CODEC_ID_GSM_MS;
|
|
|
|
|
2018-07-19 16:38:44 +03:00
|
|
|
case WAVE_FORMAT_MSG723:
|
|
|
|
return AV_CODEC_ID_G723_1;
|
|
|
|
|
2018-02-20 14:15:30 +03:00
|
|
|
case WAVE_FORMAT_AAC_MS:
|
|
|
|
return AV_CODEC_ID_AAC;
|
|
|
|
|
|
|
|
default:
|
|
|
|
return AV_CODEC_ID_NONE;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static int ffmpeg_sample_format(const AUDIO_FORMAT* format)
|
|
|
|
{
|
|
|
|
switch (format->wFormatTag)
|
|
|
|
{
|
|
|
|
case WAVE_FORMAT_PCM:
|
|
|
|
switch (format->wBitsPerSample)
|
|
|
|
{
|
|
|
|
case 8:
|
|
|
|
return AV_SAMPLE_FMT_U8;
|
|
|
|
|
|
|
|
case 16:
|
|
|
|
return AV_SAMPLE_FMT_S16;
|
|
|
|
|
|
|
|
default:
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
case WAVE_FORMAT_DVI_ADPCM:
|
|
|
|
case WAVE_FORMAT_ADPCM:
|
|
|
|
return AV_SAMPLE_FMT_S16P;
|
|
|
|
|
|
|
|
case WAVE_FORMAT_MPEGLAYER3:
|
|
|
|
case WAVE_FORMAT_AAC_MS:
|
|
|
|
return AV_SAMPLE_FMT_FLTP;
|
|
|
|
|
2018-07-19 16:38:44 +03:00
|
|
|
case WAVE_FORMAT_MSG723:
|
2018-02-20 14:15:30 +03:00
|
|
|
case WAVE_FORMAT_GSM610:
|
|
|
|
return AV_SAMPLE_FMT_S16P;
|
|
|
|
|
|
|
|
case WAVE_FORMAT_ALAW:
|
|
|
|
return AV_SAMPLE_FMT_S16;
|
|
|
|
|
|
|
|
default:
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void ffmpeg_close_context(FREERDP_DSP_CONTEXT* context)
|
|
|
|
{
|
|
|
|
if (context)
|
|
|
|
{
|
|
|
|
if (context->context)
|
|
|
|
avcodec_free_context(&context->context);
|
|
|
|
|
|
|
|
if (context->frame)
|
|
|
|
av_frame_free(&context->frame);
|
|
|
|
|
|
|
|
if (context->resampled)
|
|
|
|
av_frame_free(&context->resampled);
|
|
|
|
|
|
|
|
if (context->buffered)
|
|
|
|
av_frame_free(&context->buffered);
|
|
|
|
|
|
|
|
if (context->packet)
|
|
|
|
av_packet_free(&context->packet);
|
|
|
|
|
|
|
|
if (context->rcontext)
|
2018-10-04 09:57:54 +03:00
|
|
|
{
|
|
|
|
#if defined(SWRESAMPLE_FOUND)
|
2018-10-04 04:56:20 +03:00
|
|
|
swr_free(&context->rcontext);
|
2018-10-04 09:57:54 +03:00
|
|
|
#else
|
2018-02-20 14:15:30 +03:00
|
|
|
avresample_free(&context->rcontext);
|
2018-10-04 09:57:54 +03:00
|
|
|
#endif
|
|
|
|
}
|
2018-02-20 14:15:30 +03:00
|
|
|
|
|
|
|
context->id = AV_CODEC_ID_NONE;
|
|
|
|
context->codec = NULL;
|
|
|
|
context->isOpen = FALSE;
|
|
|
|
context->context = NULL;
|
|
|
|
context->frame = NULL;
|
|
|
|
context->resampled = NULL;
|
|
|
|
context->packet = NULL;
|
|
|
|
context->rcontext = NULL;
|
|
|
|
}
|
|
|
|
}
|
2018-07-19 16:17:54 +03:00
|
|
|
|
2018-02-20 14:15:30 +03:00
|
|
|
static BOOL ffmpeg_open_context(FREERDP_DSP_CONTEXT* context)
|
|
|
|
{
|
|
|
|
int ret;
|
|
|
|
int layout;
|
|
|
|
const AUDIO_FORMAT* format;
|
|
|
|
|
|
|
|
if (!context || context->isOpen)
|
|
|
|
return FALSE;
|
|
|
|
|
|
|
|
format = &context->format;
|
|
|
|
|
|
|
|
if (!format)
|
|
|
|
return FALSE;
|
|
|
|
|
|
|
|
layout = av_get_default_channel_layout(format->nChannels);
|
|
|
|
context->id = ffmpeg_get_avcodec(format);
|
|
|
|
|
2018-03-14 18:10:12 +03:00
|
|
|
if (ffmpeg_codec_is_filtered(context->id, context->encoder))
|
2018-02-20 14:15:30 +03:00
|
|
|
goto fail;
|
|
|
|
|
|
|
|
if (context->encoder)
|
|
|
|
context->codec = avcodec_find_encoder(context->id);
|
|
|
|
else
|
|
|
|
context->codec = avcodec_find_decoder(context->id);
|
|
|
|
|
|
|
|
if (!context->codec)
|
|
|
|
goto fail;
|
|
|
|
|
|
|
|
context->context = avcodec_alloc_context3(context->codec);
|
|
|
|
|
|
|
|
if (!context->context)
|
|
|
|
goto fail;
|
|
|
|
|
2018-04-03 12:18:22 +03:00
|
|
|
switch (context->id)
|
2018-02-20 14:15:30 +03:00
|
|
|
{
|
|
|
|
/* We need support for multichannel and sample rates != 8000 */
|
|
|
|
case AV_CODEC_ID_GSM_MS:
|
|
|
|
context->context->strict_std_compliance = FF_COMPLIANCE_UNOFFICIAL;
|
|
|
|
break;
|
2018-04-03 12:18:22 +03:00
|
|
|
|
2018-07-19 16:17:54 +03:00
|
|
|
case AV_CODEC_ID_AAC:
|
|
|
|
context->context->profile = FF_PROFILE_AAC_MAIN;
|
|
|
|
break;
|
|
|
|
|
2018-02-20 14:15:30 +03:00
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2021-05-11 12:32:50 +03:00
|
|
|
context->context->max_b_frames = 1;
|
|
|
|
context->context->delay = 0;
|
2018-02-20 14:15:30 +03:00
|
|
|
context->context->channels = format->nChannels;
|
|
|
|
context->context->channel_layout = layout;
|
|
|
|
context->context->sample_rate = format->nSamplesPerSec;
|
|
|
|
context->context->block_align = format->nBlockAlign;
|
|
|
|
context->context->bit_rate = format->nAvgBytesPerSec * 8;
|
|
|
|
context->context->sample_fmt = ffmpeg_sample_format(format);
|
|
|
|
context->context->time_base = av_make_q(1, context->context->sample_rate);
|
|
|
|
|
|
|
|
if ((ret = avcodec_open2(context->context, context->codec, NULL)) < 0)
|
|
|
|
{
|
|
|
|
const char* err = av_err2str(ret);
|
|
|
|
WLog_ERR(TAG, "Error avcodec_open2 %s [%d]", err, ret);
|
|
|
|
goto fail;
|
|
|
|
}
|
|
|
|
|
|
|
|
context->packet = av_packet_alloc();
|
|
|
|
|
|
|
|
if (!context->packet)
|
|
|
|
goto fail;
|
|
|
|
|
|
|
|
context->frame = av_frame_alloc();
|
|
|
|
|
|
|
|
if (!context->frame)
|
|
|
|
goto fail;
|
|
|
|
|
|
|
|
context->resampled = av_frame_alloc();
|
|
|
|
|
|
|
|
if (!context->resampled)
|
|
|
|
goto fail;
|
|
|
|
|
|
|
|
context->buffered = av_frame_alloc();
|
|
|
|
|
|
|
|
if (!context->buffered)
|
|
|
|
goto fail;
|
|
|
|
|
2018-10-04 09:57:54 +03:00
|
|
|
#if defined(SWRESAMPLE_FOUND)
|
|
|
|
context->rcontext = swr_alloc();
|
|
|
|
#else
|
2018-02-20 14:15:30 +03:00
|
|
|
context->rcontext = avresample_alloc_context();
|
2018-10-04 09:57:54 +03:00
|
|
|
#endif
|
2018-02-20 14:15:30 +03:00
|
|
|
|
|
|
|
if (!context->rcontext)
|
|
|
|
goto fail;
|
|
|
|
|
|
|
|
context->frame->channel_layout = layout;
|
|
|
|
context->frame->channels = format->nChannels;
|
|
|
|
context->frame->sample_rate = format->nSamplesPerSec;
|
|
|
|
context->frame->format = AV_SAMPLE_FMT_S16;
|
|
|
|
|
|
|
|
if (context->encoder)
|
|
|
|
{
|
|
|
|
context->resampled->format = context->context->sample_fmt;
|
|
|
|
context->resampled->sample_rate = context->context->sample_rate;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
context->resampled->format = AV_SAMPLE_FMT_S16;
|
|
|
|
context->resampled->sample_rate = format->nSamplesPerSec;
|
|
|
|
}
|
|
|
|
|
|
|
|
context->resampled->channel_layout = layout;
|
|
|
|
context->resampled->channels = format->nChannels;
|
|
|
|
|
|
|
|
if (context->context->frame_size > 0)
|
|
|
|
{
|
|
|
|
context->buffered->channel_layout = context->resampled->channel_layout;
|
|
|
|
context->buffered->channels = context->resampled->channels;
|
|
|
|
context->buffered->format = context->resampled->format;
|
|
|
|
context->buffered->nb_samples = context->context->frame_size;
|
|
|
|
|
|
|
|
if ((ret = av_frame_get_buffer(context->buffered, 1)) < 0)
|
|
|
|
goto fail;
|
|
|
|
}
|
|
|
|
|
|
|
|
context->isOpen = TRUE;
|
|
|
|
return TRUE;
|
|
|
|
fail:
|
|
|
|
ffmpeg_close_context(context);
|
|
|
|
return FALSE;
|
|
|
|
}
|
2018-10-04 09:57:54 +03:00
|
|
|
|
|
|
|
#if defined(SWRESAMPLE_FOUND)
|
2019-11-06 17:24:51 +03:00
|
|
|
static BOOL ffmpeg_resample_frame(SwrContext* context, AVFrame* in, AVFrame* out)
|
2018-02-20 14:15:30 +03:00
|
|
|
{
|
|
|
|
int ret;
|
|
|
|
|
2018-10-04 04:56:20 +03:00
|
|
|
if (!swr_is_initialized(context))
|
2018-02-20 14:15:30 +03:00
|
|
|
{
|
2018-10-04 04:56:20 +03:00
|
|
|
if ((ret = swr_config_frame(context, out, in)) < 0)
|
2018-02-20 14:15:30 +03:00
|
|
|
{
|
|
|
|
const char* err = av_err2str(ret);
|
|
|
|
WLog_ERR(TAG, "Error during resampling %s [%d]", err, ret);
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
2018-10-04 04:56:20 +03:00
|
|
|
if ((ret = (swr_init(context))) < 0)
|
2018-02-20 14:15:30 +03:00
|
|
|
{
|
|
|
|
const char* err = av_err2str(ret);
|
|
|
|
WLog_ERR(TAG, "Error during resampling %s [%d]", err, ret);
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-10-04 04:56:20 +03:00
|
|
|
if ((ret = swr_convert_frame(context, out, in)) < 0)
|
2018-02-20 14:15:30 +03:00
|
|
|
{
|
|
|
|
const char* err = av_err2str(ret);
|
|
|
|
WLog_ERR(TAG, "Error during resampling %s [%d]", err, ret);
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
}
|
2018-10-04 09:57:54 +03:00
|
|
|
#else
|
2019-11-06 17:24:51 +03:00
|
|
|
static BOOL ffmpeg_resample_frame(AVAudioResampleContext* context, AVFrame* in, AVFrame* out)
|
2018-02-20 14:15:30 +03:00
|
|
|
{
|
|
|
|
int ret;
|
|
|
|
|
|
|
|
if (!avresample_is_open(context))
|
|
|
|
{
|
|
|
|
if ((ret = avresample_config(context, out, in)) < 0)
|
|
|
|
{
|
|
|
|
const char* err = av_err2str(ret);
|
|
|
|
WLog_ERR(TAG, "Error during resampling %s [%d]", err, ret);
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ((ret = (avresample_open(context))) < 0)
|
|
|
|
{
|
|
|
|
const char* err = av_err2str(ret);
|
|
|
|
WLog_ERR(TAG, "Error during resampling %s [%d]", err, ret);
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if ((ret = avresample_convert_frame(context, out, in)) < 0)
|
|
|
|
{
|
|
|
|
const char* err = av_err2str(ret);
|
|
|
|
WLog_ERR(TAG, "Error during resampling %s [%d]", err, ret);
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
}
|
2018-10-04 09:57:54 +03:00
|
|
|
#endif
|
|
|
|
|
2019-11-06 17:24:51 +03:00
|
|
|
static BOOL ffmpeg_encode_frame(AVCodecContext* context, AVFrame* in, AVPacket* packet,
|
|
|
|
wStream* out)
|
2018-02-20 14:15:30 +03:00
|
|
|
{
|
|
|
|
int ret;
|
|
|
|
/* send the packet with the compressed data to the encoder */
|
|
|
|
ret = avcodec_send_frame(context, in);
|
|
|
|
|
|
|
|
if (ret < 0)
|
|
|
|
{
|
|
|
|
const char* err = av_err2str(ret);
|
2019-11-06 17:24:51 +03:00
|
|
|
WLog_ERR(TAG, "Error submitting the packet to the encoder %s [%d]", err, ret);
|
2018-02-20 14:15:30 +03:00
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* read all the output frames (in general there may be any number of them */
|
|
|
|
while (ret >= 0)
|
|
|
|
{
|
|
|
|
ret = avcodec_receive_packet(context, packet);
|
|
|
|
|
2018-07-19 16:17:54 +03:00
|
|
|
if ((ret == AVERROR(EAGAIN)) || (ret == AVERROR_EOF))
|
2018-02-20 14:15:30 +03:00
|
|
|
return TRUE;
|
|
|
|
else if (ret < 0)
|
|
|
|
{
|
|
|
|
const char* err = av_err2str(ret);
|
|
|
|
WLog_ERR(TAG, "Error during encoding %s [%d]", err, ret);
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!Stream_EnsureRemainingCapacity(out, packet->size))
|
|
|
|
return FALSE;
|
|
|
|
|
|
|
|
Stream_Write(out, packet->data, packet->size);
|
|
|
|
av_packet_unref(packet);
|
|
|
|
}
|
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
2019-11-06 17:24:51 +03:00
|
|
|
static BOOL ffmpeg_fill_frame(AVFrame* frame, const AUDIO_FORMAT* inputFormat, const BYTE* data,
|
|
|
|
size_t size)
|
2018-02-20 14:15:30 +03:00
|
|
|
{
|
|
|
|
int ret, bpp;
|
|
|
|
frame->channels = inputFormat->nChannels;
|
|
|
|
frame->sample_rate = inputFormat->nSamplesPerSec;
|
|
|
|
frame->format = ffmpeg_sample_format(inputFormat);
|
|
|
|
frame->channel_layout = av_get_default_channel_layout(frame->channels);
|
|
|
|
bpp = av_get_bytes_per_sample(frame->format);
|
|
|
|
frame->nb_samples = size / inputFormat->nChannels / bpp;
|
|
|
|
|
2019-11-06 17:24:51 +03:00
|
|
|
if ((ret = avcodec_fill_audio_frame(frame, frame->channels, frame->format, data, size, 1)) < 0)
|
2018-02-20 14:15:30 +03:00
|
|
|
{
|
|
|
|
const char* err = av_err2str(ret);
|
|
|
|
WLog_ERR(TAG, "Error during audio frame fill %s [%d]", err, ret);
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
}
|
2018-10-04 09:57:54 +03:00
|
|
|
#if defined(SWRESAMPLE_FOUND)
|
2019-11-06 17:24:51 +03:00
|
|
|
static BOOL ffmpeg_decode(AVCodecContext* dec_ctx, AVPacket* pkt, AVFrame* frame,
|
|
|
|
SwrContext* resampleContext, AVFrame* resampled, wStream* out)
|
2018-10-04 09:57:54 +03:00
|
|
|
#else
|
2019-11-06 17:24:51 +03:00
|
|
|
static BOOL ffmpeg_decode(AVCodecContext* dec_ctx, AVPacket* pkt, AVFrame* frame,
|
|
|
|
AVAudioResampleContext* resampleContext, AVFrame* resampled, wStream* out)
|
2018-10-04 09:57:54 +03:00
|
|
|
#endif
|
2018-02-20 14:15:30 +03:00
|
|
|
{
|
|
|
|
int ret;
|
|
|
|
/* send the packet with the compressed data to the decoder */
|
|
|
|
ret = avcodec_send_packet(dec_ctx, pkt);
|
|
|
|
|
|
|
|
if (ret < 0)
|
|
|
|
{
|
|
|
|
const char* err = av_err2str(ret);
|
2019-11-06 17:24:51 +03:00
|
|
|
WLog_ERR(TAG, "Error submitting the packet to the decoder %s [%d]", err, ret);
|
2018-02-20 14:15:30 +03:00
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* read all the output frames (in general there may be any number of them */
|
|
|
|
while (ret >= 0)
|
|
|
|
{
|
|
|
|
ret = avcodec_receive_frame(dec_ctx, frame);
|
|
|
|
|
|
|
|
if (ret == AVERROR(EAGAIN) || ret == AVERROR_EOF)
|
|
|
|
return TRUE;
|
|
|
|
else if (ret < 0)
|
|
|
|
{
|
|
|
|
const char* err = av_err2str(ret);
|
|
|
|
WLog_ERR(TAG, "Error during decoding %s [%d]", err, ret);
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
2018-10-04 09:57:54 +03:00
|
|
|
#if defined(SWRESAMPLE_FOUND)
|
2018-10-04 04:56:20 +03:00
|
|
|
if (!swr_is_initialized(resampleContext))
|
2018-02-20 14:15:30 +03:00
|
|
|
{
|
2018-10-04 04:56:20 +03:00
|
|
|
if ((ret = swr_config_frame(resampleContext, resampled, frame)) < 0)
|
2018-02-20 14:15:30 +03:00
|
|
|
{
|
2018-10-04 09:57:54 +03:00
|
|
|
#else
|
2018-02-20 14:15:30 +03:00
|
|
|
if (!avresample_is_open(resampleContext))
|
|
|
|
{
|
|
|
|
if ((ret = avresample_config(resampleContext, resampled, frame)) < 0)
|
|
|
|
{
|
2018-10-04 09:57:54 +03:00
|
|
|
#endif
|
2018-02-20 14:15:30 +03:00
|
|
|
const char* err = av_err2str(ret);
|
|
|
|
WLog_ERR(TAG, "Error during resampling %s [%d]", err, ret);
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
2018-10-04 09:57:54 +03:00
|
|
|
#if defined(SWRESAMPLE_FOUND)
|
2018-10-04 04:56:20 +03:00
|
|
|
if ((ret = (swr_init(resampleContext))) < 0)
|
2018-10-04 09:57:54 +03:00
|
|
|
#else
|
2018-02-20 14:15:30 +03:00
|
|
|
if ((ret = (avresample_open(resampleContext))) < 0)
|
2018-10-04 09:57:54 +03:00
|
|
|
#endif
|
2018-02-20 14:15:30 +03:00
|
|
|
{
|
|
|
|
const char* err = av_err2str(ret);
|
|
|
|
WLog_ERR(TAG, "Error during resampling %s [%d]", err, ret);
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-10-04 09:57:54 +03:00
|
|
|
#if defined(SWRESAMPLE_FOUND)
|
2018-10-04 04:56:20 +03:00
|
|
|
if ((ret = swr_convert_frame(resampleContext, resampled, frame)) < 0)
|
2018-10-04 09:57:54 +03:00
|
|
|
#else
|
2018-02-20 14:15:30 +03:00
|
|
|
if ((ret = avresample_convert_frame(resampleContext, resampled, frame)) < 0)
|
2018-10-04 09:57:54 +03:00
|
|
|
#endif
|
2018-02-20 14:15:30 +03:00
|
|
|
{
|
|
|
|
const char* err = av_err2str(ret);
|
|
|
|
WLog_ERR(TAG, "Error during resampling %s [%d]", err, ret);
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
{
|
|
|
|
const size_t data_size = resampled->channels * resampled->nb_samples * 2;
|
|
|
|
Stream_EnsureRemainingCapacity(out, data_size);
|
|
|
|
Stream_Write(out, resampled->data[0], data_size);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
BOOL freerdp_dsp_ffmpeg_supports_format(const AUDIO_FORMAT* format, BOOL encode)
|
|
|
|
{
|
|
|
|
enum AVCodecID id = ffmpeg_get_avcodec(format);
|
|
|
|
|
2018-03-14 18:10:12 +03:00
|
|
|
if (ffmpeg_codec_is_filtered(id, encode))
|
2018-02-20 14:15:30 +03:00
|
|
|
return FALSE;
|
|
|
|
|
|
|
|
if (encode)
|
|
|
|
return avcodec_find_encoder(id) != NULL;
|
|
|
|
else
|
|
|
|
return avcodec_find_decoder(id) != NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
FREERDP_DSP_CONTEXT* freerdp_dsp_ffmpeg_context_new(BOOL encode)
|
|
|
|
{
|
|
|
|
FREERDP_DSP_CONTEXT* context;
|
2022-01-24 21:47:29 +03:00
|
|
|
#if LIBAVCODEC_VERSION_INT < AV_VERSION_INT(58, 10, 100)
|
2018-02-20 14:15:30 +03:00
|
|
|
avcodec_register_all();
|
2022-01-24 21:47:29 +03:00
|
|
|
#endif
|
2018-02-20 14:15:30 +03:00
|
|
|
context = calloc(1, sizeof(FREERDP_DSP_CONTEXT));
|
|
|
|
|
|
|
|
if (!context)
|
|
|
|
return NULL;
|
|
|
|
|
2022-03-02 11:50:41 +03:00
|
|
|
context->channelmix = Stream_New(NULL, 1024);
|
|
|
|
if (!context->channelmix)
|
|
|
|
{
|
|
|
|
freerdp_dsp_ffmpeg_context_free(context);
|
|
|
|
return NULL;
|
|
|
|
}
|
2018-02-20 14:15:30 +03:00
|
|
|
context->encoder = encode;
|
|
|
|
return context;
|
|
|
|
}
|
|
|
|
|
|
|
|
void freerdp_dsp_ffmpeg_context_free(FREERDP_DSP_CONTEXT* context)
|
|
|
|
{
|
|
|
|
if (context)
|
|
|
|
{
|
|
|
|
ffmpeg_close_context(context);
|
2022-03-02 11:50:41 +03:00
|
|
|
Stream_Free(context->channelmix, TRUE);
|
2018-02-20 14:15:30 +03:00
|
|
|
free(context);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
BOOL freerdp_dsp_ffmpeg_context_reset(FREERDP_DSP_CONTEXT* context,
|
|
|
|
const AUDIO_FORMAT* targetFormat)
|
|
|
|
{
|
|
|
|
if (!context || !targetFormat)
|
|
|
|
return FALSE;
|
|
|
|
|
|
|
|
ffmpeg_close_context(context);
|
|
|
|
context->format = *targetFormat;
|
|
|
|
return ffmpeg_open_context(context);
|
|
|
|
}
|
|
|
|
|
2022-03-02 11:50:41 +03:00
|
|
|
static BOOL freerdp_dsp_channel_mix(FREERDP_DSP_CONTEXT* context, const BYTE* src, size_t size,
|
|
|
|
const AUDIO_FORMAT* srcFormat, const BYTE** data,
|
|
|
|
size_t* length, AUDIO_FORMAT* dstFormat)
|
|
|
|
{
|
|
|
|
UINT32 bpp;
|
|
|
|
size_t samples;
|
|
|
|
size_t x, y;
|
|
|
|
|
|
|
|
if (!context || !data || !length || !dstFormat)
|
|
|
|
return FALSE;
|
|
|
|
|
|
|
|
if (srcFormat->wFormatTag != WAVE_FORMAT_PCM)
|
|
|
|
return FALSE;
|
|
|
|
|
|
|
|
bpp = srcFormat->wBitsPerSample > 8 ? 2 : 1;
|
|
|
|
samples = size / bpp / srcFormat->nChannels;
|
|
|
|
|
|
|
|
*dstFormat = *srcFormat;
|
|
|
|
if (context->format.nChannels == srcFormat->nChannels)
|
|
|
|
{
|
|
|
|
*data = src;
|
|
|
|
*length = size;
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
Stream_SetPosition(context->channelmix, 0);
|
|
|
|
|
|
|
|
/* Destination has more channels than source */
|
|
|
|
if (context->format.nChannels > srcFormat->nChannels)
|
|
|
|
{
|
|
|
|
switch (srcFormat->nChannels)
|
|
|
|
{
|
|
|
|
case 1:
|
|
|
|
if (!Stream_EnsureCapacity(context->channelmix, size * 2))
|
|
|
|
return FALSE;
|
|
|
|
|
|
|
|
for (x = 0; x < samples; x++)
|
|
|
|
{
|
|
|
|
for (y = 0; y < bpp; y++)
|
|
|
|
Stream_Write_UINT8(context->channelmix, src[x * bpp + y]);
|
|
|
|
|
|
|
|
for (y = 0; y < bpp; y++)
|
|
|
|
Stream_Write_UINT8(context->channelmix, src[x * bpp + y]);
|
|
|
|
}
|
|
|
|
|
|
|
|
Stream_SealLength(context->channelmix);
|
|
|
|
*data = Stream_Buffer(context->channelmix);
|
|
|
|
*length = Stream_Length(context->channelmix);
|
|
|
|
dstFormat->nChannels = 2;
|
|
|
|
return TRUE;
|
|
|
|
|
|
|
|
case 2: /* We only support stereo, so we can not handle this case. */
|
|
|
|
default: /* Unsupported number of channels */
|
|
|
|
WLog_WARN(TAG, "[%s] unsuported source channel count %" PRIu16, __FUNCTION__,
|
|
|
|
srcFormat->nChannels);
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Destination has less channels than source */
|
|
|
|
switch (srcFormat->nChannels)
|
|
|
|
{
|
|
|
|
case 2:
|
|
|
|
if (!Stream_EnsureCapacity(context->channelmix, size / 2))
|
|
|
|
return FALSE;
|
|
|
|
|
|
|
|
/* Simply drop second channel.
|
|
|
|
* TODO: Calculate average */
|
|
|
|
for (x = 0; x < samples; x++)
|
|
|
|
{
|
|
|
|
for (y = 0; y < bpp; y++)
|
|
|
|
Stream_Write_UINT8(context->channelmix, src[2 * x * bpp + y]);
|
|
|
|
}
|
|
|
|
|
|
|
|
Stream_SealLength(context->channelmix);
|
|
|
|
*data = Stream_Buffer(context->channelmix);
|
|
|
|
*length = Stream_Length(context->channelmix);
|
|
|
|
dstFormat->nChannels = 1;
|
|
|
|
return TRUE;
|
|
|
|
|
|
|
|
case 1: /* Invalid, do we want to use a 0 channel sound? */
|
|
|
|
default: /* Unsupported number of channels */
|
|
|
|
WLog_WARN(TAG, "[%s] unsuported channel count %" PRIu16, __FUNCTION__,
|
|
|
|
srcFormat->nChannels);
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
2018-02-20 14:15:30 +03:00
|
|
|
BOOL freerdp_dsp_ffmpeg_encode(FREERDP_DSP_CONTEXT* context, const AUDIO_FORMAT* format,
|
|
|
|
const BYTE* data, size_t length, wStream* out)
|
|
|
|
{
|
|
|
|
int rc;
|
2022-03-02 11:50:41 +03:00
|
|
|
AUDIO_FORMAT fmt = { 0 };
|
2018-02-20 14:15:30 +03:00
|
|
|
|
|
|
|
if (!context || !format || !data || !out || !context->encoder)
|
|
|
|
return FALSE;
|
|
|
|
|
|
|
|
if (!context || !data || !out)
|
|
|
|
return FALSE;
|
|
|
|
|
2022-03-02 11:50:41 +03:00
|
|
|
/* https://github.com/FreeRDP/FreeRDP/issues/7607
|
|
|
|
*
|
|
|
|
* we get noisy data with channel transformation, so do it ourselves.
|
|
|
|
*/
|
|
|
|
if (!freerdp_dsp_channel_mix(context, data, length, format, &data, &length, &fmt))
|
|
|
|
return FALSE;
|
|
|
|
|
2018-02-20 14:15:30 +03:00
|
|
|
/* Create input frame */
|
|
|
|
if (!ffmpeg_fill_frame(context->frame, format, data, length))
|
|
|
|
return FALSE;
|
|
|
|
|
|
|
|
/* Resample to desired format. */
|
2019-11-06 17:24:51 +03:00
|
|
|
if (!ffmpeg_resample_frame(context->rcontext, context->frame, context->resampled))
|
2018-02-20 14:15:30 +03:00
|
|
|
return FALSE;
|
|
|
|
|
|
|
|
if (context->context->frame_size <= 0)
|
|
|
|
{
|
2019-11-06 17:24:51 +03:00
|
|
|
return ffmpeg_encode_frame(context->context, context->resampled, context->packet, out);
|
2018-02-20 14:15:30 +03:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2018-07-19 17:21:03 +03:00
|
|
|
int copied = 0;
|
|
|
|
int rest = context->resampled->nb_samples;
|
2018-02-20 14:15:30 +03:00
|
|
|
|
|
|
|
do
|
|
|
|
{
|
2018-07-19 17:21:03 +03:00
|
|
|
int inSamples = rest;
|
2018-07-19 16:17:54 +03:00
|
|
|
|
2019-02-07 16:31:17 +03:00
|
|
|
if ((inSamples < 0) || (context->bufferedSamples > (UINT32)(INT_MAX - inSamples)))
|
|
|
|
return FALSE;
|
|
|
|
|
|
|
|
if (inSamples + (int)context->bufferedSamples > context->context->frame_size)
|
|
|
|
inSamples = context->context->frame_size - (int)context->bufferedSamples;
|
2018-02-20 14:15:30 +03:00
|
|
|
|
2019-11-06 17:24:51 +03:00
|
|
|
rc =
|
|
|
|
av_samples_copy(context->buffered->extended_data, context->resampled->extended_data,
|
|
|
|
(int)context->bufferedSamples, copied, inSamples,
|
|
|
|
context->context->channels, context->context->sample_fmt);
|
2018-07-19 16:17:54 +03:00
|
|
|
rest -= inSamples;
|
2018-07-19 17:21:03 +03:00
|
|
|
copied += inSamples;
|
2019-02-07 16:31:17 +03:00
|
|
|
context->bufferedSamples += (UINT32)inSamples;
|
2018-02-20 14:15:30 +03:00
|
|
|
|
2019-02-07 16:31:17 +03:00
|
|
|
if (context->context->frame_size <= (int)context->bufferedSamples)
|
2018-02-20 14:15:30 +03:00
|
|
|
{
|
|
|
|
/* Encode in desired format. */
|
2019-11-06 17:24:51 +03:00
|
|
|
if (!ffmpeg_encode_frame(context->context, context->buffered, context->packet, out))
|
2018-02-20 14:15:30 +03:00
|
|
|
return FALSE;
|
|
|
|
|
|
|
|
context->bufferedSamples = 0;
|
|
|
|
}
|
2019-11-06 17:24:51 +03:00
|
|
|
} while (rest > 0);
|
2018-02-20 14:15:30 +03:00
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
BOOL freerdp_dsp_ffmpeg_decode(FREERDP_DSP_CONTEXT* context, const AUDIO_FORMAT* srcFormat,
|
|
|
|
const BYTE* data, size_t length, wStream* out)
|
|
|
|
{
|
|
|
|
if (!context || !srcFormat || !data || !out || context->encoder)
|
|
|
|
return FALSE;
|
|
|
|
|
2022-01-24 11:49:07 +03:00
|
|
|
#if LIBAVCODEC_VERSION_INT < AV_VERSION_INT(58, 133, 100)
|
2018-02-20 14:15:30 +03:00
|
|
|
av_init_packet(context->packet);
|
2022-01-24 11:49:07 +03:00
|
|
|
#endif
|
2018-10-03 16:16:59 +03:00
|
|
|
context->packet->data = (uint8_t*)data;
|
2018-02-20 14:15:30 +03:00
|
|
|
context->packet->size = length;
|
2019-11-06 17:24:51 +03:00
|
|
|
return ffmpeg_decode(context->context, context->packet, context->frame, context->rcontext,
|
|
|
|
context->resampled, out);
|
2018-02-20 14:15:30 +03:00
|
|
|
}
|