]> git.sesse.net Git - ffmpeg/blobdiff - libavutil/base64.c
pixfmts: Selfcheck against insertions / deletions in the enum.
[ffmpeg] / libavutil / base64.c
index 1b70fa9f33abe7799e358d503aaee79988f34c85..4ccc12e76ebfc512d4adcc0420996b42f1a3cc42 100644 (file)
@@ -100,6 +100,7 @@ char *av_base64_encode(char *out, int out_size, const uint8_t *in, int in_size)
 }
 
 #ifdef TEST
+// LCOV_EXCL_START
 
 #undef printf
 
@@ -161,4 +162,5 @@ int main(void)
     return error_count;
 }
 
+// LCOV_EXCL_STOP
 #endif