mirror of
https://git.ffmpeg.org/ffmpeg.git
synced 2024-12-28 18:32:22 +00:00
avcodec/libvpxenc,cosmetics: prefer sizeof(var)
Reviewed-by: James Almer <jamrial@gmail.com> Signed-off-by: James Zern <jzern@google.com>
This commit is contained in:
parent
06f6857b54
commit
742221d339
@ -1041,8 +1041,7 @@ static int queue_frames(AVCodecContext *avctx, AVPacket *pkt_out)
|
||||
if (size < 0)
|
||||
return size;
|
||||
} else {
|
||||
struct FrameListData *cx_frame =
|
||||
av_malloc(sizeof(struct FrameListData));
|
||||
struct FrameListData *cx_frame = av_malloc(sizeof(*cx_frame));
|
||||
|
||||
if (!cx_frame) {
|
||||
av_log(avctx, AV_LOG_ERROR,
|
||||
|
Loading…
Reference in New Issue
Block a user