]> granicus.if.org Git - libx264/commitdiff
Cosmetics: Add missing backslashes inside #defines
authorZiemowit Zabawa <ziemek.zabawa@outlook.com>
Sun, 13 Jun 2021 00:35:11 +0000 (02:35 +0200)
committerAnton Mitrofanov <bugmaster@narod.ru>
Sun, 13 Jun 2021 20:29:21 +0000 (20:29 +0000)
common/x86/predict-c.c
encoder/rdo.c

index d96854b10377fca73bc6794035d348c7150072bf..616f0cc67bd0dcb0974030bbd6f8f46faca23f07 100644 (file)
@@ -62,7 +62,7 @@ ALIGNED_8( static const int8_t pb_m32101234[8] ) = {-3,-2,-1,0,1,2,3,4};
     int b = ( 5 * H + 32 ) >> 6;\
     int c = ( 5 * V + 32 ) >> 6;\
     int i00 = a - b * 7 - c * 7 + 16;\
-    /* b*15 + c*15 can overflow: it's easier to just branch away in this rare case
+    /* b*15 + c*15 can overflow: it's easier to just branch away in this rare case\
      * than to try to consider it in the asm. */\
     if( BIT_DEPTH > 8 && (i00 > 0x7fff || abs(b) > 1092 || abs(c) > 1092) )\
         x264_predict_16x16_p_c( src );\
index d26f303f257eab656c26ad2a11519ac4ac68fbb1..93170437a045fb7d1d16a6e494b3c6b6d15cd98c 100644 (file)
@@ -767,7 +767,7 @@ int quant_trellis_cabac( x264_t *h, dctcoef *dct,
         if( !quant_coefs[i] )\
         {\
             /* no need to calculate ssd of 0s: it's the same in all nodes.\
-             * no need to modify level_tree for ctx=0: it starts with an infinite loop of 0s.
+             * no need to modify level_tree for ctx=0: it starts with an infinite loop of 0s.\
              * subtracting from one score is equivalent to adding to the rest. */\
             if( !ctx_hi )\
             {\