fixed indenting from soft spaces to hard tabs

This commit is contained in:
Yoshi Sugawara 2015-12-29 04:23:41 -05:00
parent 73c04e59fa
commit 4d2313ed9f

View file

@ -374,11 +374,11 @@ struct Atrac {
#else
// Future versions may add other things to free, but avcodec_free_context didn't exist yet here.
avcodec_close(pCodecCtx);
if ( pCodecCtx != NULL ) {
av_freep(&pCodecCtx->extradata);
av_freep(&pCodecCtx->subtitle_header);
av_freep(&pCodecCtx);
}
if ( pCodecCtx != NULL ) {
av_freep(&pCodecCtx->extradata);
av_freep(&pCodecCtx->subtitle_header);
av_freep(&pCodecCtx);
}
#endif
av_free_packet(packet);
delete packet;