1
mirror of https://git.videolan.org/git/ffmpeg.git synced 2024-08-10 19:35:05 +02:00

examples: Properly free AVCodecContext

This commit is contained in:
Vittorio Giovara 2016-07-20 16:10:17 +02:00
parent 0e0538aefc
commit 9833a406d3

View File

@ -213,8 +213,7 @@ static void audio_encode_example(const char *filename)
av_freep(&samples);
av_frame_free(&frame);
avcodec_close(c);
av_free(c);
avcodec_free_context(&c);
}
/*
@ -305,8 +304,7 @@ static void audio_decode_example(const char *outfilename, const char *filename)
fclose(outfile);
fclose(f);
avcodec_close(c);
av_free(c);
avcodec_free_context(&c);
av_frame_free(&decoded_frame);
}
@ -428,8 +426,7 @@ static void video_encode_example(const char *filename)
fwrite(endcode, 1, sizeof(endcode), f);
fclose(f);
avcodec_close(c);
av_free(c);
avcodec_free_context(&c);
av_freep(&picture->data[0]);
av_frame_free(&picture);
printf("\n");
@ -565,8 +562,7 @@ static void video_decode_example(const char *outfilename, const char *filename)
fclose(f);
avcodec_close(c);
av_free(c);
avcodec_free_context(&c);
av_frame_free(&picture);
printf("\n");
}