Commit 35a12d20 authored by Paul B Mahol's avatar Paul B Mahol

avformat/g729dec: set packet duration and correctly set timebase info

Fixes #6704.
parent 044167a1
...@@ -61,8 +61,7 @@ static int g729_read_header(AVFormatContext *s) ...@@ -61,8 +61,7 @@ static int g729_read_header(AVFormatContext *s)
return AVERROR(EINVAL); return AVERROR(EINVAL);
} }
avpriv_set_pts_info(st, st->codecpar->block_align << 3, 1, avpriv_set_pts_info(st, 64, 80, st->codecpar->sample_rate);
st->codecpar->sample_rate);
return 0; return 0;
} }
...@@ -76,6 +75,7 @@ static int g729_read_packet(AVFormatContext *s, AVPacket *pkt) ...@@ -76,6 +75,7 @@ static int g729_read_packet(AVFormatContext *s, AVPacket *pkt)
pkt->stream_index = 0; pkt->stream_index = 0;
pkt->dts = pkt->pts = pkt->pos / st->codecpar->block_align; pkt->dts = pkt->pts = pkt->pos / st->codecpar->block_align;
pkt->duration = 1;
return 0; return 0;
} }
......
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