diff options
author | Aurelien Jacobs <aurel@gnuage.org> | 2008-12-11 22:34:14 +0000 |
---|---|---|
committer | Aurelien Jacobs <aurel@gnuage.org> | 2008-12-11 22:34:14 +0000 |
commit | e998ba4fbc680cbdad296eb3d1f3dd474b869bae (patch) | |
tree | a4024e86fbbcb30b66555c85db732e7fde47b784 /libavformat/voc.h | |
parent | 6da54074010d711d3ce83df5f96bb2d3a228f9ae (diff) | |
download | ffmpeg-e998ba4fbc680cbdad296eb3d1f3dd474b869bae.tar.gz |
avoid POSIX reserved _t suffix
Originally committed as revision 16067 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat/voc.h')
-rw-r--r-- | libavformat/voc.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavformat/voc.h b/libavformat/voc.h index 0e8aa61af3..7993146f47 100644 --- a/libavformat/voc.h +++ b/libavformat/voc.h @@ -27,7 +27,7 @@ typedef struct voc_dec_context { int remaining_size; -} voc_dec_context_t; +} VocDecContext; typedef enum voc_type { VOC_TYPE_EOF = 0x00, @@ -40,7 +40,7 @@ typedef enum voc_type { VOC_TYPE_REPETITION_END = 0x07, VOC_TYPE_EXTENDED = 0x08, VOC_TYPE_NEW_VOICE_DATA = 0x09, -} voc_type_t; +} VocType; extern const unsigned char ff_voc_magic[21]; extern const AVCodecTag ff_voc_codec_tags[]; |