Spacing style

This commit is contained in:
JackBurton79 2018-08-13 10:03:45 +02:00
parent 0f36120d8d
commit 7c423844de

View File

@ -372,7 +372,7 @@ AVFormatWriter::~AVFormatWriter()
TRACE("AVFormatWriter::~AVFormatWriter\n"); TRACE("AVFormatWriter::~AVFormatWriter\n");
// Free the streams and close the AVCodecContexts // Free the streams and close the AVCodecContexts
for(unsigned i = 0; i < fFormatContext->nb_streams; i++) { for (unsigned i = 0; i < fFormatContext->nb_streams; i++) {
av_freep(&fFormatContext->streams[i]->codecpar); av_freep(&fFormatContext->streams[i]->codecpar);
av_freep(&fFormatContext->streams[i]); av_freep(&fFormatContext->streams[i]);
} }