diff options
author | Reimar Döffinger <Reimar.Doeffinger@gmx.de> | 2008-12-11 19:19:23 +0000 |
---|---|---|
committer | Reimar Döffinger <Reimar.Doeffinger@gmx.de> | 2008-12-11 19:19:23 +0000 |
commit | b4be93212fdd8eac6cec6ae0e45743c13e32c7ed (patch) | |
tree | 37b0fa116dc71446bfb8fce07220d8aa1ce48ddd | |
parent | 52afa376b8cab31595241c896beb5b7d8baf18d3 (diff) | |
download | ffmpeg-streaming-b4be93212fdd8eac6cec6ae0e45743c13e32c7ed.zip ffmpeg-streaming-b4be93212fdd8eac6cec6ae0e45743c13e32c7ed.tar.gz |
Avoid _t in typedef type
Originally committed as revision 16058 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r-- | libavformat/nuv.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libavformat/nuv.c b/libavformat/nuv.c index bd98839..7a01e68 100644 --- a/libavformat/nuv.c +++ b/libavformat/nuv.c @@ -33,7 +33,7 @@ typedef enum { NUV_AUDIO = 'A', NUV_SEEKP = 'R', NUV_MYTHEXT = 'X' -} frametype_t; +} nuv_frametype; static int nuv_probe(AVProbeData *p) { if (!memcmp(p->buf, "NuppelVideo", 12)) @@ -55,7 +55,7 @@ static int nuv_probe(AVProbeData *p) { */ static int get_codec_data(ByteIOContext *pb, AVStream *vst, AVStream *ast, int myth) { - frametype_t frametype; + nuv_frametype frametype; if (!vst && !myth) return 1; // no codec data needed while (!url_feof(pb)) { @@ -191,7 +191,7 @@ static int nuv_packet(AVFormatContext *s, AVPacket *pkt) { NUVContext *ctx = s->priv_data; ByteIOContext *pb = s->pb; uint8_t hdr[HDRSIZE]; - frametype_t frametype; + nuv_frametype frametype; int ret, size; while (!url_feof(pb)) { int copyhdrsize = ctx->rtjpg_video ? HDRSIZE : 0; |