mirror of
https://git.ffmpeg.org/ffmpeg.git
synced 2025-12-08 06:09:50 +00:00
lavc/internal: Constify AVPacket* in AVCodecInternal.
Fixes a gcc warning: libavcodec/utils.c:2244:26: warning: assignment discards 'const' qualifier from pointer target type [-Wdiscarded-qualifiers]
This commit is contained in:
parent
0d34dbc272
commit
5dd7ea9f56
2 changed files with 3 additions and 3 deletions
|
|
@ -745,7 +745,7 @@ int avcodec_default_get_buffer2(AVCodecContext *avctx, AVFrame *frame, int flags
|
|||
}
|
||||
}
|
||||
|
||||
static int add_metadata_from_side_data(AVPacket *avpkt, AVFrame *frame)
|
||||
static int add_metadata_from_side_data(const AVPacket *avpkt, AVFrame *frame)
|
||||
{
|
||||
int size;
|
||||
const uint8_t *side_metadata;
|
||||
|
|
@ -759,7 +759,7 @@ static int add_metadata_from_side_data(AVPacket *avpkt, AVFrame *frame)
|
|||
|
||||
int ff_init_buffer_info(AVCodecContext *avctx, AVFrame *frame)
|
||||
{
|
||||
AVPacket *pkt = avctx->internal->pkt;
|
||||
const AVPacket *pkt = avctx->internal->pkt;
|
||||
int i;
|
||||
static const struct {
|
||||
enum AVPacketSideDataType packet;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue