summaryrefslogtreecommitdiff
path: root/libavcodec/eval.h
diff options
context:
space:
mode:
authorStefano Sabatini <stefano.sabatini-lala@poste.it>2010-04-11 18:44:51 +0000
committerStefano Sabatini <stefano.sabatini-lala@poste.it>2010-04-11 18:44:51 +0000
commita3731cadfce39f133d788534139bcf6cec7c4d47 (patch)
tree77bbaaa27cf50a69cd4e33473003a4b43ae4cd6d /libavcodec/eval.h
parent96561c12c5951a0bd3ee4611dd2630d748d8a20f (diff)
Avoid the use of the symbol ff_expr_s for referencing AVExpr.
This way we have to deal only with struct AVExpr and AVExpr, which is slightly less confusing as the association between the two symbols is obvious. Originally committed as revision 22839 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/eval.h')
-rw-r--r--libavcodec/eval.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/eval.h b/libavcodec/eval.h
index 4b36483c41..16b9bb3913 100644
--- a/libavcodec/eval.h
+++ b/libavcodec/eval.h
@@ -28,7 +28,7 @@
#ifndef AVCODEC_EVAL_H
#define AVCODEC_EVAL_H
-typedef struct ff_expr_s AVExpr;
+typedef struct AVExpr AVExpr;
/**
* Parses and evaluates an expression.