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/vocenc.c | |
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/vocenc.c')
-rw-r--r-- | libavformat/vocenc.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libavformat/vocenc.c b/libavformat/vocenc.c index 4badb1d533..744b2337a0 100644 --- a/libavformat/vocenc.c +++ b/libavformat/vocenc.c @@ -24,7 +24,7 @@ typedef struct voc_enc_context { int param_written; -} voc_enc_context_t; +} VocEncContext; static int voc_write_header(AVFormatContext *s) { @@ -46,7 +46,7 @@ static int voc_write_header(AVFormatContext *s) static int voc_write_packet(AVFormatContext *s, AVPacket *pkt) { - voc_enc_context_t *voc = s->priv_data; + VocEncContext *voc = s->priv_data; AVCodecContext *enc = s->streams[0]->codec; ByteIOContext *pb = s->pb; @@ -93,7 +93,7 @@ AVOutputFormat voc_muxer = { NULL_IF_CONFIG_SMALL("Creative Voice file format"), "audio/x-voc", "voc", - sizeof(voc_enc_context_t), + sizeof(VocEncContext), CODEC_ID_PCM_U8, CODEC_ID_NONE, voc_write_header, |