diff --git a/README.md b/README.md index abd83ccc0..878b0ae26 100755 --- a/README.md +++ b/README.md @@ -58,9 +58,9 @@ url: rtmp://127.0.0.1:1935/live/livestream * v0.3, 2013-10-27, support cache last gop for client fast startup. * v0.2, 2013-10-25, v0.2 released. 10125 lines. * v0.2, 2013-10-25, support flash publish. -* v0.2, 2013-10-25, support h264/avc codec by rtmp complex handshake(SrsComplexHandshake). -* v0.2, 2013-10-24, support time jitter detect and correct algorithm(SrsConsumer::jitter_correct). -* v0.2, 2013-10-24, support decode codec type(SrsCodec) to cache the h264/avc sequence header. +* v0.2, 2013-10-25, support h264/avc codec by rtmp complex handshake. +* v0.2, 2013-10-24, support time jitter detect and correct algorithm +* v0.2, 2013-10-24, support decode codec type to cache the h264/avc sequence header. * v0.1, 2013-10-23, v0.1 released. 8287 lines. * v0.1, 2013-10-23, support basic amf0 codec, simplify the api using c-style api. * v0.1, 2013-10-23, support shared ptr msg(SrsSharedPtrMessage) for zero memory copy. diff --git a/trunk/src/core/srs_core_codec.hpp b/trunk/src/core/srs_core_codec.hpp index ae73e6302..051dba11c 100755 --- a/trunk/src/core/srs_core_codec.hpp +++ b/trunk/src/core/srs_core_codec.hpp @@ -32,7 +32,6 @@ CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. /** * Annex E. The FLV File Format -* @doc update the README.cmd */ class SrsCodec { diff --git a/trunk/src/core/srs_core_complex_handshake.hpp b/trunk/src/core/srs_core_complex_handshake.hpp index 4b3db6c76..5ed6c2df6 100755 --- a/trunk/src/core/srs_core_complex_handshake.hpp +++ b/trunk/src/core/srs_core_complex_handshake.hpp @@ -36,7 +36,6 @@ class SrsSocket; * rtmp complex handshake, * @see also crtmp(crtmpserver) or librtmp, * @see also: http://blog.csdn.net/win_lin/article/details/13006803 -* @doc update the README.cmd */ class SrsComplexHandshake { diff --git a/trunk/src/core/srs_core_source.hpp b/trunk/src/core/srs_core_source.hpp index 9b14002de..107ce5a21 100755 --- a/trunk/src/core/srs_core_source.hpp +++ b/trunk/src/core/srs_core_source.hpp @@ -72,7 +72,6 @@ public: private: /** * detect the time jitter and correct it. - * @doc update the README.cmd */ virtual int jitter_correct(SrsSharedPtrMessage* msg, int audio_sample_rate); };