[FFmpeg-cvslog] r11938 - in trunk/libavcodec: avcodec.h eval.c eval.h
lucabe
subversion
Fri Feb 15 13:04:35 CET 2008
Author: lucabe
Date: Fri Feb 15 13:04:35 2008
New Revision: 11938
Log:
Fix
utils.c: In function ?avcodec_get_context_defaults2?:
utils.c:793: warning: assignment discards qualifiers from pointer target type
Modified:
trunk/libavcodec/avcodec.h
trunk/libavcodec/eval.c
trunk/libavcodec/eval.h
Modified: trunk/libavcodec/avcodec.h
==============================================================================
--- trunk/libavcodec/avcodec.h (original)
+++ trunk/libavcodec/avcodec.h Fri Feb 15 13:04:35 2008
@@ -1197,7 +1197,7 @@ typedef struct AVCodecContext {
* - encoding: Set by user
* - decoding: unused
*/
- char *rc_eq;
+ const char *rc_eq;
/**
* maximum bitrate
Modified: trunk/libavcodec/eval.c
==============================================================================
--- trunk/libavcodec/eval.c (original)
+++ trunk/libavcodec/eval.c Fri Feb 15 13:04:35 2008
@@ -376,7 +376,7 @@ static int verify_expr(AVEvalExpr * e) {
}
}
-AVEvalExpr * ff_parse(char *s, const char **const_name,
+AVEvalExpr * ff_parse(const char *s, const char **const_name,
double (**func1)(void *, double), const char **func1_name,
double (**func2)(void *, double, double), char **func2_name,
const char **error){
@@ -413,7 +413,7 @@ double ff_parse_eval(AVEvalExpr * e, dou
return eval_expr(&p, e);
}
-double ff_eval2(char *s, double *const_value, const char **const_name,
+double ff_eval2(const char *s, double *const_value, const char **const_name,
double (**func1)(void *, double), const char **func1_name,
double (**func2)(void *, double, double), char **func2_name,
void *opaque, const char **error){
Modified: trunk/libavcodec/eval.h
==============================================================================
--- trunk/libavcodec/eval.h (original)
+++ trunk/libavcodec/eval.h Fri Feb 15 13:04:35 2008
@@ -52,7 +52,7 @@ double ff_eval(char *s, double *const_va
* @param opaque a pointer which will be passed to all functions from func1 and func2
* @return the value of the expression
*/
-double ff_eval2(char *s, double *const_value, const char **const_name,
+double ff_eval2(const char *s, double *const_value, const char **const_name,
double (**func1)(void *, double), const char **func1_name,
double (**func2)(void *, double, double), char **func2_name,
void *opaque, const char **error);
@@ -71,7 +71,7 @@ typedef struct ff_expr_s AVEvalExpr;
* @return AVEvalExpr which must be freed with ff_eval_free by the user when it is not needed anymore
* NULL if anything went wrong
*/
-AVEvalExpr * ff_parse(char *s, const char **const_name,
+AVEvalExpr * ff_parse(const char *s, const char **const_name,
double (**func1)(void *, double), const char **func1_name,
double (**func2)(void *, double, double), char **func2_name,
const char **error);
More information about the ffmpeg-cvslog
mailing list