1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-06-16 16:10:06 +02:00

ExportFFmpeg: remove unused variable

Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Signed-off-by: Benjamin Drung <bdrung@debian.org>
This commit is contained in:
benjamin.drung@gmail.com 2014-05-27 21:47:54 +00:00
parent 16f834f0c3
commit 8149b34861

View File

@ -523,7 +523,7 @@ bool ExportFFmpeg::InitCodecs(AudacityProject *project)
static int encode_audio(AVCodecContext *avctx, AVPacket *pkt, int16_t *audio_samples, int nb_samples)
{
int i, ch, buffer_size, ret, got_output = 0, nEncodedBytes;
int i, ch, buffer_size, ret, got_output = 0;
void *samples = NULL;
AVFrame *frame = NULL;