From 7f78155dc6b65be55efb5309b6dd2bb33925a8c4 Mon Sep 17 00:00:00 2001 From: Anton Khirnov Date: Thu, 9 Jul 2015 18:36:16 +0200 Subject: hevc: improve a comment That loop does the actual full decoding, so 'parse' can be misleading. --- libavcodec/hevc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'libavcodec/hevc.c') diff --git a/libavcodec/hevc.c b/libavcodec/hevc.c index c9d43448e3..4025f461e2 100644 --- a/libavcodec/hevc.c +++ b/libavcodec/hevc.c @@ -2633,7 +2633,7 @@ static int decode_nal_units(HEVCContext *s, const uint8_t *buf, int length) s->eos = 1; } - /* parse the NAL units */ + /* decode the NAL units */ for (i = 0; i < s->pkt.nb_nals; i++) { ret = decode_nal_unit(s, &s->pkt.nals[i]); if (ret < 0) { -- cgit v1.2.3