mirror of
https://git.ffmpeg.org/ffmpeg.git
synced 2024-12-26 09:12:33 +00:00
frame_thread_encoder: pass frame pict type and quality
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
parent
097a909ea1
commit
2d5c80b2e8
@ -230,6 +230,8 @@ int ff_thread_video_encode_frame(AVCodecContext *avctx, AVPacket *pkt, const AVF
|
||||
if(ret<0)
|
||||
return ret;
|
||||
new->pts = frame->pts;
|
||||
new->quality = frame->quality;
|
||||
new->pict_type = frame->pict_type;
|
||||
av_image_copy(new->data, new->linesize, (const uint8_t **)frame->data, frame->linesize,
|
||||
avctx->pix_fmt, avctx->width, avctx->height);
|
||||
frame = new;
|
||||
|
Loading…
Reference in New Issue
Block a user