mirror of
https://github.com/ultravideo/uvg266.git
synced 2024-11-24 02:24:07 +00:00
Change ref list printout to match hm decoded printout
This commit is contained in:
parent
20aea8df63
commit
957b6850c3
|
@ -518,7 +518,7 @@ void print_frame_info(const kvz_frame_info *const info,
|
||||||
if (info->slice_type != KVZ_SLICE_I) {
|
if (info->slice_type != KVZ_SLICE_I) {
|
||||||
// Print reference picture lists
|
// Print reference picture lists
|
||||||
fprintf(stderr, " [L0 ");
|
fprintf(stderr, " [L0 ");
|
||||||
for (int j = info->ref_list_len[0] - 1; j >= 0; j--) {
|
for (int j = 0; j < info->ref_list_len[0]; j++) {
|
||||||
fprintf(stderr, "%d ", info->ref_list[0][j]);
|
fprintf(stderr, "%d ", info->ref_list[0][j]);
|
||||||
}
|
}
|
||||||
fprintf(stderr, "] [L1 ");
|
fprintf(stderr, "] [L1 ");
|
||||||
|
|
Loading…
Reference in a new issue