TA的每日心情 | 奋斗 2020-5-6 08:48 |
---|
签到天数: 140 天 [LV.7]常住居民III
|
我一直疑问为什么有些视频解码时显示格式是:H264,大部分又是:AVC1- L4 C4 o+ {& f1 X$ j& `1 ?0 C
我在搜索编程资料时在微软的msdn上发现的:
, w5 p! F' x& J 原文:http://msdn.microsoft.com/en-us/library/dd757808(v=vs.85).aspx
% v! Q5 @4 }1 z7 J# A3 Z ]+ b5 b FOURCC:AVC1 描述:H.264 bitstream without start codes.
0 _# w) v. |) s5 f2 _4 P8 }, k% m- n FOURCC:H264 描述:H.264 bitstream with start codes.
5 n/ l0 N& J9 S
/ P, I3 R! S( `- s( R. Z* w: r; @
H.264 Bitstream with Start Codes
- f( G0 V5 N4 l" _7 [& c7 z& h
7 O; H- h0 e% ^4 e: `1 `: a H.264 bitstreams that are transmitted over the air, or contained in MPEG-2 program or transport streams, or recorded on HD-DVD, are formatted as described in Annex B of ITU-T Rec. H.264. According to this specification, the bitstream consists of a sequence of network abstraction layer units (NALUs), each of which is prefixed with a start code equal to 0x000001 or 0x00000001.: N3 I0 T% r1 K1 m* m5 u& v
这段话的大致意思是:带有开始码的H.264视频一般是用于无线发射、有线广播或者HD-DVD中的。这些数据流的开始都有一个开始码:0x000001 或者 0x00000001.
: A% u; h9 Z0 t0 e+ \/ r9 u3 `
/ u$ u f' M+ E$ y
, J: \) x" N1 i, \$ u8 x4 q H.264 Bitstream Without Start Codes5 H y3 ~0 s Y2 ~! K
N5 N$ n$ m3 H; n3 A, o& K The MP4 container format stores H.264 data without start codes. Instead, each NALU is prefixed by a length field, which gives the length of the NALU in bytes. The size of the length field can vary, but is typically 1, 2, or 4 bytes.: w. Y! g2 u) |7 x5 H) }! j
这段话的大致意思是:没有开始码的H.264视频主要是存储在MP4格式的文件中的。它的数据流的开始是1、2或者4个字节表示长度数据。
9 M! ?: K( V- W+ _/ g3 c4 O原文中的"NALU"简单说是H.264格式中的最基本的单元,是一个数据包。
0 {/ _* u0 [" H4 k! |- l |
|