1
0
mirror of https://github.com/FFmpeg/FFmpeg.git synced 2024-12-23 12:43:46 +02:00

h264: fix cabac-on-stack after safe cabac reader.

This commit is contained in:
Ronald S. Bultje 2012-03-28 16:32:27 -07:00
parent bd508d435b
commit 63a1b481f6

View File

@ -1630,6 +1630,7 @@ decode_cabac_residual_internal(H264Context *h, DCTELEM *block,
cc.range = h->cabac.range;
cc.low = h->cabac.low;
cc.bytestream= h->cabac.bytestream;
cc.bytestream_end = h->cabac.bytestream_end;
#else
#define CC &h->cabac
#endif