That loop does the actual full decoding, so 'parse' can be misleading.
---
 libavcodec/hevc.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/libavcodec/hevc.c b/libavcodec/hevc.c
index 0883360..1995998 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) {
-- 
2.0.0

_______________________________________________
libav-devel mailing list
libav-devel@libav.org
https://lists.libav.org/mailman/listinfo/libav-devel

Reply via email to