Browse Source

pthread: copy coded frame dimensions in update_context_from_thread

Signed-off-by: Janne Grunau <janne-libav@jannau.net>
tags/n0.9
Ronald S. Bultje Janne Grunau 14 years ago
parent
commit
feadcd1bdc
1 changed files with 3 additions and 0 deletions
  1. +3
    -0
      libavcodec/pthread.c

+ 3
- 0
libavcodec/pthread.c View File

@@ -332,6 +332,9 @@ static int update_context_from_thread(AVCodecContext *dst, AVCodecContext *src,
dst->height = src->height;
dst->pix_fmt = src->pix_fmt;

dst->coded_width = src->coded_width;
dst->coded_height = src->coded_height;

dst->has_b_frames = src->has_b_frames;
dst->idct_algo = src->idct_algo;
dst->slice_count = src->slice_count;


Loading…
Cancel
Save