diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2008-02-19 16:08:52 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2008-02-19 16:08:52 +0000 |
commit | d937cd0ed2568207c0e691b21bc9c090e4db5d26 (patch) | |
tree | e4b1a2e6a1a86e65e3ee800007b95c2ce65488e3 /libavformat/avc.h | |
parent | 05218081581f49c4c948cf8e95544075b41506bf (diff) | |
download | ffmpeg-d937cd0ed2568207c0e691b21bc9c090e4db5d26.tar.gz |
const
Originally committed as revision 12145 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat/avc.h')
-rw-r--r-- | libavformat/avc.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libavformat/avc.h b/libavformat/avc.h index 932ce55027..334aa4347e 100644 --- a/libavformat/avc.h +++ b/libavformat/avc.h @@ -25,8 +25,8 @@ #include <stdint.h> #include "avio.h" -int ff_avc_parse_nal_units(uint8_t *buf_in, uint8_t **buf, int *size); -int ff_isom_write_avcc(ByteIOContext *pb, uint8_t *data, int len); -uint8_t *ff_avc_find_startcode(uint8_t *p, uint8_t *end); +int ff_avc_parse_nal_units(const uint8_t *buf_in, uint8_t **buf, int *size); +int ff_isom_write_avcc(ByteIOContext *pb, const uint8_t *data, int len); +const uint8_t *ff_avc_find_startcode(const uint8_t *p, const uint8_t *end); #endif /* AVC_H */ |