Commit fb91850f authored by James Almer's avatar James Almer

avutil/frame: access avframe fields directly in get_frame_defaults()

The accessors are needed only from outside libavutil.
Reviewed-by: 's avatarMichael Niedermayer <michael@niedermayer.cc>
Signed-off-by: 's avatarJames Almer <jamrial@gmail.com>
parent 384251da
...@@ -101,10 +101,10 @@ static void get_frame_defaults(AVFrame *frame) ...@@ -101,10 +101,10 @@ static void get_frame_defaults(AVFrame *frame)
frame->pts = frame->pts =
frame->pkt_dts = frame->pkt_dts =
frame->pkt_pts = AV_NOPTS_VALUE; frame->pkt_pts = AV_NOPTS_VALUE;
av_frame_set_best_effort_timestamp(frame, AV_NOPTS_VALUE); frame->best_effort_timestamp = AV_NOPTS_VALUE;
av_frame_set_pkt_duration (frame, 0); frame->pkt_duration = 0;
av_frame_set_pkt_pos (frame, -1); frame->pkt_pos = -1;
av_frame_set_pkt_size (frame, -1); frame->pkt_size = -1;
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 */
......
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