diff options
author | Aurelien Jacobs <aurel@gnuage.org> | 2007-05-07 00:47:03 +0000 |
---|---|---|
committer | Aurelien Jacobs <aurel@gnuage.org> | 2007-05-07 00:47:03 +0000 |
commit | c53d2d90425e0abcca6ff96251bff84fc3993f80 (patch) | |
tree | 3679e62f3dbcf1b095d00e78cf08abf969931ab1 /libavcodec/dvbsub_parser.c | |
parent | 89ecc26188855c65245d4cc6c6b58e5d3c22edb6 (diff) | |
download | ffmpeg-c53d2d90425e0abcca6ff96251bff84fc3993f80.tar.gz |
make some parser parameters const to avoid casting const to non-const
Originally committed as revision 8921 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/dvbsub_parser.c')
-rw-r--r-- | libavcodec/dvbsub_parser.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/dvbsub_parser.c b/libavcodec/dvbsub_parser.c index a327a4ba1d..312c243bf5 100644 --- a/libavcodec/dvbsub_parser.c +++ b/libavcodec/dvbsub_parser.c @@ -48,7 +48,7 @@ static int dvbsub_parse_init(AVCodecParserContext *s) static int dvbsub_parse(AVCodecParserContext *s, AVCodecContext *avctx, - uint8_t **poutbuf, int *poutbuf_size, + const uint8_t **poutbuf, int *poutbuf_size, const uint8_t *buf, int buf_size) { DVBSubParseContext *pc = s->priv_data; |