diff options
author | Diego Pettenò <flameeyes@gmail.com> | 2008-01-07 12:44:49 +0000 |
---|---|---|
committer | Benoit Fouet <benoit.fouet@free.fr> | 2008-01-07 12:44:49 +0000 |
commit | 31bfd6f34f5b6b2c5bb9641aef33f0a7f9bebc4a (patch) | |
tree | 2e12643a998a5d66708a126a5259952a6cb6d0f8 /libpostproc/postprocess_internal.h | |
parent | 9307db13f6af0bb9fa54b0c4ec080b548c242d27 (diff) | |
download | ffmpeg-31bfd6f34f5b6b2c5bb9641aef33f0a7f9bebc4a.tar.gz |
Make the av_class member of PPContext a poiner to constant AVClass.
Patch by Diego 'Flameeyes' Pettenò flameeyes ¤ gmail ! com
Originally committed as revision 11445 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libpostproc/postprocess_internal.h')
-rw-r--r-- | libpostproc/postprocess_internal.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libpostproc/postprocess_internal.h b/libpostproc/postprocess_internal.h index e977048d2f..922dbd8117 100644 --- a/libpostproc/postprocess_internal.h +++ b/libpostproc/postprocess_internal.h @@ -126,7 +126,7 @@ typedef struct PPContext{ /** * info on struct for av_log */ - AVClass *av_class; + const AVClass *av_class; uint8_t *tempBlocks; ///<used for the horizontal code |