Commit 44bcab58 authored by Anton Khirnov's avatar Anton Khirnov

ffmenc: remove references to deprecated AVFormatContext.timestamp.

parent e5c70815
...@@ -205,7 +205,7 @@ static int ffm_write_packet(AVFormatContext *s, AVPacket *pkt) ...@@ -205,7 +205,7 @@ static int ffm_write_packet(AVFormatContext *s, AVPacket *pkt)
uint8_t header[FRAME_HEADER_SIZE+4]; uint8_t header[FRAME_HEADER_SIZE+4];
int header_size = FRAME_HEADER_SIZE; int header_size = FRAME_HEADER_SIZE;
dts = s->timestamp + pkt->dts; dts = pkt->dts;
/* packet size & key_frame */ /* packet size & key_frame */
header[0] = pkt->stream_index; header[0] = pkt->stream_index;
header[1] = 0; header[1] = 0;
...@@ -213,7 +213,7 @@ static int ffm_write_packet(AVFormatContext *s, AVPacket *pkt) ...@@ -213,7 +213,7 @@ static int ffm_write_packet(AVFormatContext *s, AVPacket *pkt)
header[1] |= FLAG_KEY_FRAME; header[1] |= FLAG_KEY_FRAME;
AV_WB24(header+2, pkt->size); AV_WB24(header+2, pkt->size);
AV_WB24(header+5, pkt->duration); AV_WB24(header+5, pkt->duration);
AV_WB64(header+8, s->timestamp + pkt->pts); AV_WB64(header+8, pkt->pts);
if (pkt->pts != pkt->dts) { if (pkt->pts != pkt->dts) {
header[1] |= FLAG_DTS; header[1] |= FLAG_DTS;
AV_WB32(header+16, pkt->pts - pkt->dts); AV_WB32(header+16, pkt->pts - pkt->dts);
......
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