mirror of
https://github.com/nyanmisaka/ffmpeg-rockchip.git
synced 2026-01-24 02:21:11 +01:00
avformat/adtsenc: do not pass NULL to av_log()
This commit is contained in:
parent
97befd7fcb
commit
44c8f7df03
1 changed files with 3 additions and 3 deletions
|
|
@ -127,14 +127,14 @@ static int adts_write_header(AVFormatContext *s)
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
static int adts_write_frame_header(ADTSContext *ctx,
|
static int adts_write_frame_header(AVFormatContext *s, ADTSContext *ctx,
|
||||||
uint8_t *buf, int size, int pce_size)
|
uint8_t *buf, int size, int pce_size)
|
||||||
{
|
{
|
||||||
PutBitContext pb;
|
PutBitContext pb;
|
||||||
|
|
||||||
unsigned full_frame_size = (unsigned)ADTS_HEADER_SIZE + size + pce_size;
|
unsigned full_frame_size = (unsigned)ADTS_HEADER_SIZE + size + pce_size;
|
||||||
if (full_frame_size > ADTS_MAX_FRAME_BYTES) {
|
if (full_frame_size > ADTS_MAX_FRAME_BYTES) {
|
||||||
av_log(NULL, AV_LOG_ERROR, "ADTS frame size too large: %u (max %d)\n",
|
av_log(s, AV_LOG_ERROR, "frame size too large: %u (max %d)\n",
|
||||||
full_frame_size, ADTS_MAX_FRAME_BYTES);
|
full_frame_size, ADTS_MAX_FRAME_BYTES);
|
||||||
return AVERROR_INVALIDDATA;
|
return AVERROR_INVALIDDATA;
|
||||||
}
|
}
|
||||||
|
|
@ -192,7 +192,7 @@ static int adts_write_packet(AVFormatContext *s, AVPacket *pkt)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if (adts->write_adts) {
|
if (adts->write_adts) {
|
||||||
int err = adts_write_frame_header(adts, buf, pkt->size,
|
int err = adts_write_frame_header(s, adts, buf, pkt->size,
|
||||||
adts->pce_size);
|
adts->pce_size);
|
||||||
if (err < 0)
|
if (err < 0)
|
||||||
return err;
|
return err;
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue