Use avcodec_free_frame() to free AVFrames.

This commit is contained in:
Anton Khirnov 2012-09-21 09:10:23 +02:00
parent 9eb296572e
commit 11d1ca4b2c
5 changed files with 10 additions and 9 deletions

View file

@ -212,7 +212,7 @@ static void audio_encode_example(const char *filename)
fclose(f);
av_freep(&samples);
av_freep(&frame);
avcodec_free_frame(&frame);
avcodec_close(c);
av_free(c);
}
@ -308,7 +308,7 @@ static void audio_decode_example(const char *outfilename, const char *filename)
avcodec_close(c);
av_free(c);
av_free(decoded_frame);
avcodec_free_frame(&decoded_frame);
}
/*
@ -432,7 +432,7 @@ static void video_encode_example(const char *filename)
avcodec_close(c);
av_free(c);
av_freep(&picture->data[0]);
av_free(picture);
avcodec_free_frame(&picture);
printf("\n");
}
@ -568,7 +568,7 @@ static void video_decode_example(const char *outfilename, const char *filename)
avcodec_close(c);
av_free(c);
av_free(picture);
avcodec_free_frame(&picture);
printf("\n");
}