libavformat/utils.c: av_pkt_dump_log2: use const pointers
Use const pointers to AVPacket and AVStream. Signed-off-by: Roman Fietze <roman.fietze@telemotive.de> Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:

committed by
Michael Niedermayer

parent
e12a73246d
commit
74aeb6b584
@@ -2298,7 +2298,7 @@ void av_hex_dump_log(void *avcl, int level, const uint8_t *buf, int size);
|
|||||||
* @param dump_payload True if the payload must be displayed, too.
|
* @param dump_payload True if the payload must be displayed, too.
|
||||||
* @param st AVStream that the packet belongs to
|
* @param st AVStream that the packet belongs to
|
||||||
*/
|
*/
|
||||||
void av_pkt_dump2(FILE *f, AVPacket *pkt, int dump_payload, AVStream *st);
|
void av_pkt_dump2(FILE *f, const AVPacket *pkt, int dump_payload, const AVStream *st);
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@@ -2312,8 +2312,8 @@ void av_pkt_dump2(FILE *f, AVPacket *pkt, int dump_payload, AVStream *st);
|
|||||||
* @param dump_payload True if the payload must be displayed, too.
|
* @param dump_payload True if the payload must be displayed, too.
|
||||||
* @param st AVStream that the packet belongs to
|
* @param st AVStream that the packet belongs to
|
||||||
*/
|
*/
|
||||||
void av_pkt_dump_log2(void *avcl, int level, AVPacket *pkt, int dump_payload,
|
void av_pkt_dump_log2(void *avcl, int level, const AVPacket *pkt, int dump_payload,
|
||||||
AVStream *st);
|
const AVStream *st);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Get the AVCodecID for the given codec tag tag.
|
* Get the AVCodecID for the given codec tag tag.
|
||||||
|
@@ -4039,7 +4039,7 @@ void av_hex_dump_log(void *avcl, int level, const uint8_t *buf, int size)
|
|||||||
hex_dump_internal(avcl, NULL, level, buf, size);
|
hex_dump_internal(avcl, NULL, level, buf, size);
|
||||||
}
|
}
|
||||||
|
|
||||||
static void pkt_dump_internal(void *avcl, FILE *f, int level, AVPacket *pkt,
|
static void pkt_dump_internal(void *avcl, FILE *f, int level, const AVPacket *pkt,
|
||||||
int dump_payload, AVRational time_base)
|
int dump_payload, AVRational time_base)
|
||||||
{
|
{
|
||||||
HEXDUMP_PRINT("stream #%d:\n", pkt->stream_index);
|
HEXDUMP_PRINT("stream #%d:\n", pkt->stream_index);
|
||||||
@@ -4063,13 +4063,13 @@ static void pkt_dump_internal(void *avcl, FILE *f, int level, AVPacket *pkt,
|
|||||||
av_hex_dump(f, pkt->data, pkt->size);
|
av_hex_dump(f, pkt->data, pkt->size);
|
||||||
}
|
}
|
||||||
|
|
||||||
void av_pkt_dump2(FILE *f, AVPacket *pkt, int dump_payload, AVStream *st)
|
void av_pkt_dump2(FILE *f, const AVPacket *pkt, int dump_payload, const AVStream *st)
|
||||||
{
|
{
|
||||||
pkt_dump_internal(NULL, f, 0, pkt, dump_payload, st->time_base);
|
pkt_dump_internal(NULL, f, 0, pkt, dump_payload, st->time_base);
|
||||||
}
|
}
|
||||||
|
|
||||||
void av_pkt_dump_log2(void *avcl, int level, AVPacket *pkt, int dump_payload,
|
void av_pkt_dump_log2(void *avcl, int level, const AVPacket *pkt, int dump_payload,
|
||||||
AVStream *st)
|
const AVStream *st)
|
||||||
{
|
{
|
||||||
pkt_dump_internal(avcl, NULL, level, pkt, dump_payload, st->time_base);
|
pkt_dump_internal(avcl, NULL, level, pkt, dump_payload, st->time_base);
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user