You've already forked FFmpeg
mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-08-15 14:13:16 +02:00
hevc: improve a comment
That loop does the actual full decoding, so 'parse' can be misleading.
This commit is contained in:
@@ -2633,7 +2633,7 @@ static int decode_nal_units(HEVCContext *s, const uint8_t *buf, int length)
|
|||||||
s->eos = 1;
|
s->eos = 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* parse the NAL units */
|
/* decode the NAL units */
|
||||||
for (i = 0; i < s->pkt.nb_nals; i++) {
|
for (i = 0; i < s->pkt.nb_nals; i++) {
|
||||||
ret = decode_nal_unit(s, &s->pkt.nals[i]);
|
ret = decode_nal_unit(s, &s->pkt.nals[i]);
|
||||||
if (ret < 0) {
|
if (ret < 0) {
|
||||||
|
Reference in New Issue
Block a user