[FFmpeg-soc] [soc]: r5690 - mms/mmst.c

spyfeng subversion at mplayerhq.hu
Sat Mar 20 16:45:48 CET 2010


Author: spyfeng
Date: Sat Mar 20 16:45:48 2010
New Revision: 5690

Log:
fix code style mess.

Modified:
   mms/mmst.c

Modified: mms/mmst.c
==============================================================================
--- mms/mmst.c	Sat Mar 20 16:43:11 2010	(r5689)
+++ mms/mmst.c	Sat Mar 20 16:45:48 2010	(r5690)
@@ -254,13 +254,11 @@ static int read_bytes(MMSContext *mms, u
 {
     int len= 0;
 
-    while(len<length_to_read)
-    {
+    while(len<length_to_read) {
         int read_result= url_read(mms->mms_hd, buffer+len, length_to_read-len);
         if(read_result < 0)
             return read_result;
-        if(read_result)
-        {
+        if(read_result) {
             len+= read_result;
         } else
             return read_result;


More information about the FFmpeg-soc mailing list