You've already forked FFmpeg
mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-07-11 14:30:22 +02:00
mp3enc: remove unneeded null ptr check
Fixes: CID733746 Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
@ -259,7 +259,7 @@ static int mp3_write_audio_packet(AVFormatContext *s, AVPacket *pkt)
|
||||
{
|
||||
MP3Context *mp3 = s->priv_data;
|
||||
|
||||
if (pkt && pkt->data && pkt->size >= 4) {
|
||||
if (pkt->data && pkt->size >= 4) {
|
||||
MPADecodeHeader c;
|
||||
int av_unused base;
|
||||
|
||||
|
Reference in New Issue
Block a user