diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2008-12-11 19:06:24 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2008-12-11 19:06:24 +0000 |
commit | 52afa376b8cab31595241c896beb5b7d8baf18d3 (patch) | |
tree | eec09244c9bc9bcf6ebd5b9ede8f56c0c41e465b /libavformat/nutenc.c | |
parent | 76f940b21e589341be28666755d13d8794b3d6af (diff) | |
download | ffmpeg-52afa376b8cab31595241c896beb5b7d8baf18d3.tar.gz |
remove _t for POSIX compatibility.
Originally committed as revision 16057 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat/nutenc.c')
-rw-r--r-- | libavformat/nutenc.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libavformat/nutenc.c b/libavformat/nutenc.c index 478fc4faa5..54d4b070f8 100644 --- a/libavformat/nutenc.c +++ b/libavformat/nutenc.c @@ -260,7 +260,7 @@ static void put_v(ByteIOContext *bc, uint64_t val){ put_byte(bc, val&127); } -static void put_t(NUTContext *nut, StreamContext *nus, ByteIOContext *bc, uint64_t val){ +static void put_tt(NUTContext *nut, StreamContext *nus, ByteIOContext *bc, uint64_t val){ val *= nut->time_base_count; val += nus->time_base - nut->time_base; put_v(bc, val); @@ -664,7 +664,7 @@ static int write_packet(AVFormatContext *s, AVPacket *pkt){ //FIXME: Ensure store_sp is 1 in the first place. if(store_sp){ - syncpoint_t *sp, dummy= {.pos= INT64_MAX}; + Syncpoint *sp, dummy= {.pos= INT64_MAX}; ff_nut_reset_ts(nut, *nus->time_base, pkt->dts); for(i=0; i<s->nb_streams; i++){ @@ -684,7 +684,7 @@ static int write_packet(AVFormatContext *s, AVPacket *pkt){ ret = url_open_dyn_buf(&dyn_bc); if(ret < 0) return ret; - put_t(nut, nus, dyn_bc, pkt->dts); + put_tt(nut, nus, dyn_bc, pkt->dts); put_v(dyn_bc, sp ? (nut->last_syncpoint_pos - sp->pos)>>4 : 0); put_packet(nut, bc, dyn_bc, 1, SYNCPOINT_STARTCODE); |