美文网首页
H.264的profile和level

H.264的profile和level

作者: 秦枫桀 | 来源:发表于2018-05-04 19:39 被阅读0次

profile

针对特定的应用程序类别,H.264标准定义了一组特定的编码功能,被称为profile。分别是BP、EP、MP、HP。

  • BP - Baseline Profile
  •  a、I/P slices
    
     b、Multiple reference frames (–refs <int>, >1 in the x264 CLI)
    
     c、In-loop deblocking(环路滤波)
    
     d、CAVLC entropy coding (–no-cabac in the x264 CLI)
    

利用I片和P片支持帧内和帧间编码,支持利用基于上下文的自适应的变长编码进行的熵编码(CAVLC)和只支持无交错(Progressive)。主要用于可视电话、会议电视、无线通信等实时视频通信。

  • EP - Extended profile
    支持I/P/B/SP/SI帧,即支持码流之间有效的切换(SP和SI片)、改进误码性能;只支持无交错(Progressive)和CAVLC;但不支持隔行视频和CABAC。

  • MP - Main profile

  •  a、Baseline Profile features mentioned above
    
     b、B slices
    
     c、CABACentropy coding
    
     d、Interlacedcoding – PAFF/MBAFF
    
     e、Weightedprediction
    

提供I/P/B 帧,支持无交错(Progressive)和交错(Interlaced),也支持CAVLC 和CABAC 的支持;主要用于数字广播电视与数字视频存储。

  • HP - High Profile
  •  a、Main Profile features mentioned above
    
     b、8×8 transform option (–8×8dct in the x264 CLI)
    
     c、Custom quantisation matrices
    

在mainProfile的基础上增加了8x8内部预测、自定义量化、 无损视频编码和更多的YUV格式。

level

level是一组特定的约束,表示一个profile所需的解码性能。例如,profile中的支持level指定了解码器可能使用的最大图像分辨率、帧率和比特率。一个符合给定level的解码器必须能够解码为该level和所有低level编码的所有比特流。

image

相关文章

  • H.264的profile和level

    profile 针对特定的应用程序类别,H.264标准定义了一组特定的编码功能,被称为profile。分别是BP、...

  • H.264的profile和level

    原文:https://www.jianshu.com/p/5e69c4d919e8[https://www.jia...

  • 十一:SPS和PPS介绍

    SPS和PPS串,包含了初始化H.264解码器所需要的信息参数,包括编码所用的profile,level,图像的宽...

  • SPS 和 PPS 介绍 (三)

    SPS和PPS串,包含了初始化H.264解码器所需要的信息参数,包括编码所用的profile,level,图像的宽...

  • Profile & Level (H.264)

    H.264 or MPEG-4 Part 10, Advanced Video Coding (MPEG-4 AV...

  • H264 profile level

    profile 压缩特性 level 码率帧率

  • 从H.264码流中一眼读出其Profile和Level

    H.264是目前业界使用最多的视频编码格式,广泛应用于直播、视频会议、在线教育和远程医疗等领域。本篇分享的文章假设...

  • mp4 to m3u8

    ffmpeg -i 1.mp4 -profile:v baseline -level 3.0 -s 640x360...

  • Profile、level 、Tier简介

    在H264中就有对档次( Profile)和级别( Level)的划分,它们规定了比特流必须要遵守的一些限制要求。...

  • SDP Profile-level-id解析

    SIP SDP Profile-level-id解析基于SIP协议的VOIP通信,该字段通常位于视频协商sdp报文...

网友评论

      本文标题:H.264的profile和level

      本文链接:https://www.haomeiwen.com/subject/wiwdrftx.html