通过SPS计算视频的宽高及帧率等参数

  • Post author:
  • Post category:其他

1、H264
计算宽高根据标识不同有两种(都是从SPS字段中取值)
第一种:
Width = (pic_width_in_mbs_minus1+1)*16;
Height = (pic_height_in_map_units_minus1+1)*16;

第二种条件, frame_cropping_flag 值为1,frame_mbs_only_flag 为1,公式如下:
(也可以认为统一使用下面的公式)
width = ((pic_width_in_mbs_minus1 +1)16) – frame_crop_left_offset2 – frame_crop_right_offset2;
height= ((2 – frame_mbs_only_flag)
(pic_height_in_map_units_minus1 +1) * 16)
– (frame_crop_top_offset * 2) – (frame_crop_bottom_offset * 2);

第三种、正确计算方法如下函数:
// 宽高计算公式
width = (sps->pic_width_in_mbs_minus1+1) * 16;
height = (2 – sps->frame_mbs_only_flag)* (sps->pic_height_in_map_units_minus1 +1) * 16);
if(sps->frame_cropping_flag)
{
unsigned int crop_unit_x;
unsigned int crop_unit_y;
if (0 == sps->chroma_format_idc) // monochrome
{
crop_unit_x = 1;
crop_unit_y = 2 – sps->frame_mbs_only_flag;
}
else if (1 == sps->chroma_format_idc) // 4:2:0
{
crop_unit_x = 2;
crop_unit_y = 2 * (2 – sps->frame_mbs_only_flag);
}
else if (2 == sps->chroma_format_idc) // 4:2:2
{
crop_unit_x = 2;
crop_unit_y = 2 – sps->frame_mbs_only_flag;
}
else // 3 == sps.chroma_format_idc // 4:4:4
{
crop_unit_x = 1;
crop_unit_y = 2 – sps->frame_mbs_only_flag;
}
width -= crop_unit_x * (sps->frame_crop_left_offset + sps->frame_crop_right_offset);
height -= crop_unit_y * (sps->frame_crop_top_offset + sps->frame_crop_bottom_offset);
}

2、H265
H.265类似,但SPS的字段不同了。公式如下:
width = sps->pic_width_in_luma_samples;
height = sps->pic_height_in_luma_samples;
当窗口有裁剪时(conformance_window_flag为1),计算如下:
sub_width_c = ((1chroma_format_idc)||(2 == chroma_format_idc))&&(0separate_colour_plane_flag)?2:1;
sub_height_c = (1==chroma_format_idc)&& (0 == separate_colour_plane_flag)?2:1;
width -= (sub_width_cconf_win_right_offset + sub_width_cconf_win_left_offset);
height -= (sub_height_cconf_win_bottom_offset + sub_height_cconf_win_top_offset);

3、帧率
H264和H265帧率计算公式相同,如下:
max_framerate = (float)(sps->vui.vui_time_scale) / (float)(sps->vui.vui_num_units_in_tick);
使用x264编码YUV序列,设置为25fps时,time_scale为50,num_units_in_tick为1,计算得50fps,与实际不符。
而x265用同样的参数编码,计算得到的帧率是正常的

通过RTSP里面获取到SPS,PPS内容,可以参考我的代码:
从RTSP的SDP传输内容中获取SPS及PPS


版权声明:本文为senfelai原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。