Commit b482c001 authored by Reimar Döffinger's avatar Reimar Döffinger

Remove pts rescaling code that is useless after 2ff4a276

parent 12763671
......@@ -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++;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment