diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2015-04-29 15:13:24 +0200 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2015-04-29 15:21:28 +0200 |
commit | 4a95cd5d9b4b5a48e438827c9c8f048d86abc14c (patch) | |
tree | cc271f125994ca5f2569c2ba710e6093a0674337 /libavcodec | |
parent | bd7dce594ea76b3d9a898c6ceb55ccc91ec76001 (diff) | |
download | ffmpeg-4a95cd5d9b4b5a48e438827c9c8f048d86abc14c.tar.gz |
avcodec/h264_slice: Also copy x264_build in ff_h264_update_thread_context()
Fixes fate-h264-lossless
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavcodec')
-rw-r--r-- | libavcodec/h264_slice.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libavcodec/h264_slice.c b/libavcodec/h264_slice.c index 7c06489d26..867ff3914e 100644 --- a/libavcodec/h264_slice.c +++ b/libavcodec/h264_slice.c @@ -521,6 +521,7 @@ int ff_h264_update_thread_context(AVCodecContext *dst, // extradata/NAL handling h->is_avc = h1->is_avc; h->nal_length_size = h1->nal_length_size; + h->x264_build = h1->x264_build; // Dequantization matrices // FIXME these are big - can they be only copied when PPS changes? |