mirror of https://github.com/mpv-player/mpv
packet: change len field from int to size_t
Why not. struct demux_packet doesn't change on 64 bit size due to alignment padding.
This commit is contained in:
parent
b9250569cd
commit
7c356ee836
|
@ -1924,7 +1924,7 @@ static void add_packet_locked(struct sh_stream *stream, demux_packet_t *dp)
|
|||
|
||||
const char *num_pkts = queue->head == queue->tail ? "1" : ">1";
|
||||
uint64_t fw_bytes = get_foward_buffered_bytes(ds);
|
||||
MP_TRACE(in, "append packet to %s: size=%d pts=%f dts=%f pos=%"PRIi64" "
|
||||
MP_TRACE(in, "append packet to %s: size=%zu pts=%f dts=%f pos=%"PRIi64" "
|
||||
"[num=%s size=%zd]\n", stream_type_name(stream->type),
|
||||
dp->len, dp->pts, dp->dts, dp->pos, num_pkts, (size_t)fw_bytes);
|
||||
|
||||
|
|
|
@ -30,7 +30,7 @@ typedef struct demux_packet {
|
|||
int64_t pos; // position in source file byte stream
|
||||
|
||||
unsigned char *buffer;
|
||||
int len;
|
||||
size_t len;
|
||||
|
||||
int stream; // source stream index (typically sh_stream.index)
|
||||
|
||||
|
|
Loading…
Reference in New Issue