[FFmpeg-cvslog] r11513 - trunk/libavformat/raw.c
michael
subversion
Sat Jan 12 01:24:10 CET 2008
Author: michael
Date: Sat Jan 12 01:24:10 2008
New Revision: 11513
Log:
Set pts/dts in raw (yuv,rgb,pcm) demuxers.
Modified:
trunk/libavformat/raw.c
Modified: trunk/libavformat/raw.c
==============================================================================
--- trunk/libavformat/raw.c (original)
+++ trunk/libavformat/raw.c Sat Jan 12 01:24:10 2008
@@ -105,7 +105,7 @@ static int raw_read_header(AVFormatConte
static int raw_read_packet(AVFormatContext *s, AVPacket *pkt)
{
- int ret, size;
+ int ret, size, bps;
// AVStream *st = s->streams[0];
size= RAW_PACKET_SIZE;
@@ -119,6 +119,12 @@ static int raw_read_packet(AVFormatConte
/* note: we need to modify the packet size here to handle the last
packet */
pkt->size = ret;
+
+ bps= av_get_bits_per_sample(s->streams[0]->codec->codec_id);
+ assert(bps); // if false there IS a bug elsewhere (NOT in this function)
+ pkt->dts=
+ pkt->pts= pkt->pos*8 / (bps * s->streams[0]->codec->channels);
+
return ret;
}
@@ -847,6 +853,8 @@ static int rawvideo_read_packet(AVFormat
return -1;
ret= av_get_packet(s->pb, pkt, packet_size);
+ pkt->pts=
+ pkt->dts= pkt->pos / packet_size;
pkt->stream_index = 0;
if (ret != packet_size) {
More information about the ffmpeg-cvslog
mailing list