[FFmpeg-cvslog] avcodec/libvpxenc,cosmetics: prefer sizeof(var)
James Zern
git at videolan.org
Tue Jan 7 08:37:06 EET 2020
ffmpeg | branch: master | James Zern <jzern at google.com> | Fri Jan 3 15:01:43 2020 -0800| [742221d33917797402cd970f4f335539b38fe59c] | committer: James Zern
avcodec/libvpxenc,cosmetics: prefer sizeof(var)
Reviewed-by: James Almer <jamrial at gmail.com>
Signed-off-by: James Zern <jzern at google.com>
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=742221d33917797402cd970f4f335539b38fe59c
---
libavcodec/libvpxenc.c | 3 +--
1 file changed, 1 insertion(+), 2 deletions(-)
diff --git a/libavcodec/libvpxenc.c b/libavcodec/libvpxenc.c
index 3f659b4b67..0b8a070304 100644
--- a/libavcodec/libvpxenc.c
+++ b/libavcodec/libvpxenc.c
@@ -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,
More information about the ffmpeg-cvslog
mailing list