Commit 5abdda21 authored by Michael Niedermayer's avatar Michael Niedermayer

avcodec/utils: implement avcodec_alloc_frame() through av_alloc_frame()

This ensures that theres just one AVFrame allocation function and libs dont
produce multiple AVFrame variants after a minor lib update
Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parent 6aed7bfd
...@@ -1067,15 +1067,7 @@ void avcodec_get_frame_defaults(AVFrame *frame) ...@@ -1067,15 +1067,7 @@ void avcodec_get_frame_defaults(AVFrame *frame)
AVFrame *avcodec_alloc_frame(void) AVFrame *avcodec_alloc_frame(void)
{ {
AVFrame *frame = av_malloc(sizeof(AVFrame)); return av_frame_alloc();
if (frame == NULL)
return NULL;
frame->extended_data = NULL;
avcodec_get_frame_defaults(frame);
return frame;
} }
void avcodec_free_frame(AVFrame **frame) void avcodec_free_frame(AVFrame **frame)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment