X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=libavcodec%2Fnuv.c;h=ad6c029e5005ff7fdf66e85572c29c38a4fe029e;hb=abb3cc46d595dcb186ae30ec7339a56cd9803f45;hp=ade3310d857db65bb210a5be8e3890e5b2ebceb6;hpb=ba5100ce84644923537f997dea39bf2e7b4b9c20;p=ffmpeg diff --git a/libavcodec/nuv.c b/libavcodec/nuv.c index ade3310d857..ad6c029e500 100644 --- a/libavcodec/nuv.c +++ b/libavcodec/nuv.c @@ -179,7 +179,7 @@ static int decode_frame(AVCodecContext *avctx, void *data, int *got_frame, // codec data (rtjpeg quant tables) if (buf[0] == 'D' && buf[1] == 'R') { int ret; - // skip rest of the frameheader. + // Skip the rest of the frame header. buf = &buf[12]; buf_size -= 12; ret = get_quant(avctx, c, buf, buf_size); @@ -207,7 +207,7 @@ static int decode_frame(AVCodecContext *avctx, void *data, int *got_frame, break; } retry: - // skip rest of the frameheader. + // Skip the rest of the frame header. buf = &buf[12]; buf_size -= 12; if (comptype == NUV_RTJPEG_IN_LZO || comptype == NUV_LZO) {