diff options
author | Aurelien Jacobs <aurel@gnuage.org> | 2008-01-11 23:33:32 +0000 |
---|---|---|
committer | Aurelien Jacobs <aurel@gnuage.org> | 2008-01-11 23:33:32 +0000 |
commit | 9ab3f71b60f478cd3b54369b396a6e71cac83859 (patch) | |
tree | b3b15a02d6a6e8af2b70ff5cba2f93a875be1b3d /libavformat/avc.h | |
parent | e609806ec6a79325773d8905d1d04b5442d8b5ed (diff) | |
download | ffmpeg-9ab3f71b60f478cd3b54369b396a6e71cac83859.tar.gz |
add a ff_ prefix to newly exported functions from avc.c
Originally committed as revision 11511 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat/avc.h')
-rw-r--r-- | libavformat/avc.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavformat/avc.h b/libavformat/avc.h index 7e63d06ccb..a66e5f0ffd 100644 --- a/libavformat/avc.h +++ b/libavformat/avc.h @@ -25,7 +25,7 @@ #include <stdint.h> #include "avio.h" -int avc_parse_nal_units(uint8_t *buf_in, uint8_t **buf, int *size); -int isom_write_avcc(ByteIOContext *pb, uint8_t *data, int len); +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); #endif /* AVC_H */ |