mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-12-23 12:43:46 +02:00
lavc: initialize AVFrame.extended_data in avcodec_get_frame_defaults()
This commit is contained in:
parent
c084a975aa
commit
2bc0de3858
@ -635,12 +635,16 @@ enum PixelFormat avcodec_default_get_format(struct AVCodecContext *s, const enum
|
|||||||
|
|
||||||
void avcodec_get_frame_defaults(AVFrame *frame)
|
void avcodec_get_frame_defaults(AVFrame *frame)
|
||||||
{
|
{
|
||||||
|
if (frame->extended_data != frame->data)
|
||||||
|
av_freep(&frame->extended_data);
|
||||||
|
|
||||||
memset(frame, 0, sizeof(AVFrame));
|
memset(frame, 0, sizeof(AVFrame));
|
||||||
|
|
||||||
frame->pts = AV_NOPTS_VALUE;
|
frame->pts = AV_NOPTS_VALUE;
|
||||||
frame->key_frame = 1;
|
frame->key_frame = 1;
|
||||||
frame->sample_aspect_ratio = (AVRational) {0, 1 };
|
frame->sample_aspect_ratio = (AVRational) {0, 1 };
|
||||||
frame->format = -1; /* unknown */
|
frame->format = -1; /* unknown */
|
||||||
|
frame->extended_data = frame->data;
|
||||||
}
|
}
|
||||||
|
|
||||||
AVFrame *avcodec_alloc_frame(void)
|
AVFrame *avcodec_alloc_frame(void)
|
||||||
|
Loading…
Reference in New Issue
Block a user