diff options
author | Lynne <dev@lynne.ee> | 2022-11-23 15:59:23 +0100 |
---|---|---|
committer | Lynne <dev@lynne.ee> | 2023-05-29 00:41:29 +0200 |
commit | 1f66e3347dae2e42a723986b988b704e419c3378 (patch) | |
tree | 3e42df0156e44270613d29020aa6790a71544fbb | |
parent | 6718b37e5dac73868db9f595d36268e6a0752347 (diff) | |
download | ffmpeg-1f66e3347dae2e42a723986b988b704e419c3378.tar.gz |
h264_ps: comment pic_order_present better
The official name which CBS uses is bottom_field_pic_order_in_frame_present_flag.
-rw-r--r-- | libavcodec/h264_ps.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/h264_ps.h b/libavcodec/h264_ps.h index d2413ae0f8..de4529b353 100644 --- a/libavcodec/h264_ps.h +++ b/libavcodec/h264_ps.h @@ -106,7 +106,7 @@ typedef struct PPS { unsigned int pps_id; unsigned int sps_id; int cabac; ///< entropy_coding_mode_flag - int pic_order_present; ///< pic_order_present_flag + int pic_order_present; ///< bottom_field_pic_order_in_frame_present_flag int slice_group_count; ///< num_slice_groups_minus1 + 1 int mb_slice_group_map_type; unsigned int ref_count[2]; ///< num_ref_idx_l0/1_active_minus1 + 1 |