diff options
author | Kieran Kunhya <kieran@kunhya.com> | 2016-02-15 21:39:27 +0000 |
---|---|---|
committer | Kieran Kunhya <kieran@kunhya.com> | 2016-02-27 12:18:06 +0000 |
commit | 0096453f70c42db403ced2e8c89a1d92c5343109 (patch) | |
tree | b766a2d204472e038e004618940d25c754a846c0 /libavcodec/cfhd.h | |
parent | d39b770aa27687da3b799252e614caa8b8686c13 (diff) | |
download | ffmpeg-0096453f70c42db403ced2e8c89a1d92c5343109.tar.gz |
cfhd: reallocate internal buffers on format change.
Fixes some, but not all, of the threading fuzz crashes
Diffstat (limited to 'libavcodec/cfhd.h')
-rw-r--r-- | libavcodec/cfhd.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libavcodec/cfhd.h b/libavcodec/cfhd.h index a26312404f..67a0e4c32c 100644 --- a/libavcodec/cfhd.h +++ b/libavcodec/cfhd.h @@ -84,9 +84,11 @@ typedef struct CFHDContext { int coded_width; int coded_height; + int coded_format; int a_width; int a_height; + int a_format; int bpc; int channel_cnt; |