winlin

refine code, add the video tag comments.

@@ -331,6 +331,7 @@ int SrsAvcAacCodec::video_avc_demux(char* data, int size, SrsCodecSample* sample @@ -331,6 +331,7 @@ int SrsAvcAacCodec::video_avc_demux(char* data, int size, SrsCodecSample* sample
331 return ret; 331 return ret;
332 } 332 }
333 333
  334 + // @see: E.4.3 Video Tags, video_file_format_spec_v10_1.pdf, page 78
334 int8_t frame_type = stream->read_1bytes(); 335 int8_t frame_type = stream->read_1bytes();
335 int8_t codec_id = frame_type & 0x0f; 336 int8_t codec_id = frame_type & 0x0f;
336 frame_type = (frame_type >> 4) & 0x0f; 337 frame_type = (frame_type >> 4) & 0x0f;