1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-06-25 08:38:39 +02:00

Replace tabs by spaces.

This commit is contained in:
benjamin.drung@gmail.com 2014-06-05 22:04:22 +00:00
parent c8d6505c64
commit 149fcafc1c
4 changed files with 28 additions and 28 deletions

View File

@ -340,7 +340,7 @@ static int set_dict_int(AVDictionary **dict, const char *key, int val)
bool ExportFFmpeg::InitCodecs(AudacityProject *project)
{
AVCodec * codec = NULL;
AVCodec *codec = NULL;
AVDictionary *options = NULL;
// Configure the audio stream's codec context.
@ -711,7 +711,7 @@ bool ExportFFmpeg::EncodeAudioFrame(int16_t *pFrame, int frameSize)
{
AVPacket pkt;
int nBytesToWrite = 0;
uint8_t * pRawSamples = NULL;
uint8_t *pRawSamples = NULL;
int nAudioFrameSizeOut = default_frame_size * mEncAudioCodecCtx->channels * sizeof(int16_t);
int ret;