aboutsummaryrefslogtreecommitdiffstats
path: root/libavcodec/h264.h
diff options
context:
space:
mode:
authorRonald S. Bultje <rsbultje@gmail.com>2013-03-02 16:57:26 -0800
committerMichael Niedermayer <michaelni@gmx.at>2013-03-03 12:19:15 +0100
commitd4e649cca6de9e5b25f8ebb28c82a95bd24a9e9c (patch)
treedffeba96fc0b6e004ec93c92a6aefe6da821602a /libavcodec/h264.h
parentfd464d4d01b313eccc423cac8811d2b4b970ea6f (diff)
downloadffmpeg-d4e649cca6de9e5b25f8ebb28c82a95bd24a9e9c.tar.gz
h264: make it possible to compile without error_resilience.
Signed-off-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 d391b229c7..03be472c51 100644
--- a/libavcodec/h264.h
+++ b/libavcodec/h264.h
@@ -256,7 +256,6 @@ typedef struct MMCO {
*/
typedef struct H264Context {
AVCodecContext *avctx;
- DSPContext dsp;
VideoDSPContext vdsp;
H264DSPContext h264dsp;
H264ChromaContext h264chroma;
@@ -264,6 +263,7 @@ typedef struct H264Context {
MotionEstContext me;
ParseContext parse_context;
GetBitContext gb;
+ DSPContext dsp;
ERContext er;
Picture *DPB;