winlin

update readme.

@@ -58,9 +58,9 @@ url: rtmp://127.0.0.1:1935/live/livestream @@ -58,9 +58,9 @@ url: rtmp://127.0.0.1:1935/live/livestream
58 * v0.3, 2013-10-27, support cache last gop for client fast startup. 58 * v0.3, 2013-10-27, support cache last gop for client fast startup.
59 * v0.2, 2013-10-25, v0.2 released. 10125 lines. 59 * v0.2, 2013-10-25, v0.2 released. 10125 lines.
60 * v0.2, 2013-10-25, support flash publish. 60 * v0.2, 2013-10-25, support flash publish.
61 -* v0.2, 2013-10-25, support h264/avc codec by rtmp complex handshake(SrsComplexHandshake).  
62 -* v0.2, 2013-10-24, support time jitter detect and correct algorithm(SrsConsumer::jitter_correct).  
63 -* v0.2, 2013-10-24, support decode codec type(SrsCodec) to cache the h264/avc sequence header. 61 +* v0.2, 2013-10-25, support h264/avc codec by rtmp complex handshake.
  62 +* v0.2, 2013-10-24, support time jitter detect and correct algorithm
  63 +* v0.2, 2013-10-24, support decode codec type to cache the h264/avc sequence header.
64 * v0.1, 2013-10-23, v0.1 released. 8287 lines. 64 * v0.1, 2013-10-23, v0.1 released. 8287 lines.
65 * v0.1, 2013-10-23, support basic amf0 codec, simplify the api using c-style api. 65 * v0.1, 2013-10-23, support basic amf0 codec, simplify the api using c-style api.
66 * v0.1, 2013-10-23, support shared ptr msg(SrsSharedPtrMessage) for zero memory copy. 66 * v0.1, 2013-10-23, support shared ptr msg(SrsSharedPtrMessage) for zero memory copy.
@@ -32,7 +32,6 @@ CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. @@ -32,7 +32,6 @@ CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
32 32
33 /** 33 /**
34 * Annex E. The FLV File Format 34 * Annex E. The FLV File Format
35 -* @doc update the README.cmd  
36 */ 35 */
37 class SrsCodec 36 class SrsCodec
38 { 37 {
@@ -36,7 +36,6 @@ class SrsSocket; @@ -36,7 +36,6 @@ class SrsSocket;
36 * rtmp complex handshake, 36 * rtmp complex handshake,
37 * @see also crtmp(crtmpserver) or librtmp, 37 * @see also crtmp(crtmpserver) or librtmp,
38 * @see also: http://blog.csdn.net/win_lin/article/details/13006803 38 * @see also: http://blog.csdn.net/win_lin/article/details/13006803
39 -* @doc update the README.cmd  
40 */ 39 */
41 class SrsComplexHandshake 40 class SrsComplexHandshake
42 { 41 {
@@ -72,7 +72,6 @@ public: @@ -72,7 +72,6 @@ public:
72 private: 72 private:
73 /** 73 /**
74 * detect the time jitter and correct it. 74 * detect the time jitter and correct it.
75 - * @doc update the README.cmd  
76 */ 75 */
77 virtual int jitter_correct(SrsSharedPtrMessage* msg, int audio_sample_rate); 76 virtual int jitter_correct(SrsSharedPtrMessage* msg, int audio_sample_rate);
78 }; 77 };