[FFmpeg-cvslog] r13228 - trunk/libavformat/ffm.c
bcoudurier
subversion
Thu May 22 00:52:22 CEST 2008
Author: bcoudurier
Date: Thu May 22 00:52:21 2008
New Revision: 13228
Log:
use duration from pkt
Modified:
trunk/libavformat/ffm.c
Modified: trunk/libavformat/ffm.c
==============================================================================
--- trunk/libavformat/ffm.c (original)
+++ trunk/libavformat/ffm.c Thu May 22 00:52:21 2008
@@ -247,16 +247,8 @@ static int ffm_write_packet(AVFormatCont
FFMStream *fst = st->priv_data;
int64_t pts;
uint8_t header[FRAME_HEADER_SIZE];
- int duration;
int size= pkt->size;
- //XXX/FIXME use duration from pkt
- if (st->codec->codec_type == CODEC_TYPE_AUDIO) {
- duration = ((float)st->codec->frame_size / st->codec->sample_rate * 1000000.0);
- } else {
- duration = (1000000.0 * st->codec->time_base.num / (float)st->codec->time_base.den);
- }
-
pts = fst->pts;
/* packet size & key_frame */
header[0] = pkt->stream_index;
@@ -264,7 +256,7 @@ static int ffm_write_packet(AVFormatCont
if (pkt->flags & PKT_FLAG_KEY)
header[1] |= FLAG_KEY_FRAME;
AV_WB24(header+2, size);
- AV_WB24(header+5, duration);
+ AV_WB24(header+5, pkt->duration);
ffm_write_data(s, header, FRAME_HEADER_SIZE, pts, 1);
ffm_write_data(s, pkt->data, size, pts, 0);
More information about the ffmpeg-cvslog
mailing list