[FFmpeg-cvslog] r15044 - trunk/libavformat/flvenc.c
bcoudurier
subversion
Sat Aug 30 05:02:00 CEST 2008
Author: bcoudurier
Date: Sat Aug 30 05:01:59 2008
New Revision: 15044
Log:
remove now useless casts
Modified:
trunk/libavformat/flvenc.c
Modified: trunk/libavformat/flvenc.c
==============================================================================
--- trunk/libavformat/flvenc.c (original)
+++ trunk/libavformat/flvenc.c Sat Aug 30 05:01:59 2008
@@ -344,8 +344,8 @@ static int flv_write_packet(AVFormatCont
assert(pkt->size);
size = pkt->size;
/* cast needed to get negative value */
- if (!flv->delay && (int32_t)pkt->dts < 0)
- flv->delay = -(int32_t)pkt->dts;
+ if (!flv->delay && pkt->dts < 0)
+ flv->delay = -pkt->dts;
}
ts = pkt->dts + flv->delay; // add delay to force positive dts
@@ -362,7 +362,7 @@ static int flv_write_packet(AVFormatCont
put_byte(pb,1); // AAC raw
else if (enc->codec_id == CODEC_ID_H264) {
put_byte(pb,1); // AVC NALU
- put_be24(pb,pkt->pts - (int32_t)pkt->dts);
+ put_be24(pb,pkt->pts - pkt->dts);
}
put_buffer(pb, pkt->data, size);
put_be32(pb,size+flags_size+11); // previous tag size
More information about the ffmpeg-cvslog
mailing list