summaryrefslogtreecommitdiff
path: root/libavcodec/h264.h
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2015-04-29 15:22:49 +0200
committerMichael Niedermayer <michaelni@gmx.at>2015-04-29 15:33:46 +0200
commit07a79cf8694ac685ae8f579ccc33d113eb46fe3d (patch)
tree75920179e81a146478832713c24a5208fde4d81d /libavcodec/h264.h
parent4a95cd5d9b4b5a48e438827c9c8f048d86abc14c (diff)
parent7a4f74eed51f914e9bbfebaffd4a92ac6791f819 (diff)
Merge commit '7a4f74eed51f914e9bbfebaffd4a92ac6791f819'
* commit '7a4f74eed51f914e9bbfebaffd4a92ac6791f819': h264: embed the DPB in the context Conflicts: libavcodec/h264.c Merged-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavcodec/h264.h')
-rw-r--r--libavcodec/h264.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/h264.h b/libavcodec/h264.h
index 12e5245c19..7ab1fdfda1 100644
--- a/libavcodec/h264.h
+++ b/libavcodec/h264.h
@@ -506,7 +506,7 @@ typedef struct H264Context {
H264QpelContext h264qpel;
GetBitContext gb;
- H264Picture *DPB;
+ H264Picture DPB[H264_MAX_PICTURE_COUNT];
H264Picture *cur_pic_ptr;
H264Picture cur_pic;
H264Picture last_pic_for_ec;