Remove pts rescaling code that is useless after 2ff4a2764e

This commit is contained in:
Reimar Döffinger 2011-01-31 19:25:59 +01:00
parent 12763671e2
commit b482c00121
1 changed files with 1 additions and 4 deletions

View File

@ -56,14 +56,11 @@ static int vc1test_write_packet(AVFormatContext *s, AVPacket *pkt)
{
RCVContext *ctx = s->priv_data;
ByteIOContext *pb = s->pb;
uint32_t pts = av_rescale(pkt->pts,
1000 * (uint64_t)s->streams[0]->time_base.num,
s->streams[0]->time_base.den);
if (!pkt->size)
return 0;
put_le32(pb, pkt->size | ((pkt->flags & AV_PKT_FLAG_KEY) ? 0x80000000 : 0));
put_le32(pb, pts);
put_le32(pb, pkt->pts);
put_buffer(pb, pkt->data, pkt->size);
put_flush_packet(pb);
ctx->frames++;