summaryrefslogtreecommitdiff
path: root/libavcodec/avpacket.c
diff options
context:
space:
mode:
authorLynne <dev@lynne.ee>2021-08-02 14:40:57 +0200
committerLynne <dev@lynne.ee>2021-08-02 14:45:47 +0200
commitc8b1f2bcc4767b3ab59c40c32620b2e467a6ae8d (patch)
tree2a4f5d372188ab0671e0c34a222fe9240f2ddb7e /libavcodec/avpacket.c
parenta1a0fddfd05c1dd0c03e5aa4d51baedad59fa117 (diff)
packet: initialize time_base field to (0, 1) instead of (0, 0)
Forget rational or irrational numbers, division by zero is undefined.
Diffstat (limited to 'libavcodec/avpacket.c')
-rw-r--r--libavcodec/avpacket.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/libavcodec/avpacket.c b/libavcodec/avpacket.c
index 075b219475..d8d8fef3b9 100644
--- a/libavcodec/avpacket.c
+++ b/libavcodec/avpacket.c
@@ -47,7 +47,7 @@ void av_init_packet(AVPacket *pkt)
pkt->side_data_elems = 0;
pkt->opaque = NULL;
pkt->opaque_ref = NULL;
- pkt->time_base = av_make_q(0, 0);
+ pkt->time_base = av_make_q(0, 1);
}
#endif
@@ -58,6 +58,7 @@ static void get_packet_defaults(AVPacket *pkt)
pkt->pts = AV_NOPTS_VALUE;
pkt->dts = AV_NOPTS_VALUE;
pkt->pos = -1;
+ pkt->time_base = av_make_q(0, 1);
}
AVPacket *av_packet_alloc(void)