mirror of https://git.ffmpeg.org/ffmpeg.git
examples: Properly free AVCodecContext
This commit is contained in:
parent
0e0538aefc
commit
9833a406d3
|
@ -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");
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue