diff options
author | Anton Khirnov <anton@khirnov.net> | 2015-01-17 22:28:46 +0100 |
---|---|---|
committer | Anton Khirnov <anton@khirnov.net> | 2015-03-21 11:27:12 +0100 |
commit | 4bd5ac200d15b4f458a50f66006549825f9fc865 (patch) | |
tree | f9ee1ad485e2b388bbe3e9a772744d0383b05825 /libavcodec/h264.h | |
parent | 5355ed6b20e941430c4f8fb82644e87a65366d61 (diff) | |
download | ffmpeg-4bd5ac200d15b4f458a50f66006549825f9fc865.tar.gz |
h264: move {chroma,intra16x16}_pred_mode into the per-slice context
Diffstat (limited to 'libavcodec/h264.h')
-rw-r--r-- | libavcodec/h264.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libavcodec/h264.h b/libavcodec/h264.h index 1ba6e56497..203a04bd1d 100644 --- a/libavcodec/h264.h +++ b/libavcodec/h264.h @@ -317,6 +317,9 @@ typedef struct H264SliceContext { int prev_mb_skipped; int next_mb_skipped; + + int chroma_pred_mode; + int intra16x16_pred_mode; } H264SliceContext; /** @@ -354,9 +357,6 @@ typedef struct H264Context { int workaround_bugs; // prediction stuff - int chroma_pred_mode; - int intra16x16_pred_mode; - int topleft_mb_xy; int top_mb_xy; int topright_mb_xy; |