diff --git a/daemon/src/video/video_send_thread.cpp b/daemon/src/video/video_send_thread.cpp
index 2a644aa448eb1b80bea4b82156d5058b79874705..0d541bbc5799a2c22b3feaad00671a75b9d4c2b6 100644
--- a/daemon/src/video/video_send_thread.cpp
+++ b/daemon/src/video/video_send_thread.cpp
@@ -129,7 +129,7 @@ extractProfileLevelID(const std::string &parameters, AVCodecContext *ctx)
     // If no profile-level-id is present, the Baseline Profile without
     // additional constraints at Level 1 MUST be implied.
     ctx->profile = FF_PROFILE_H264_BASELINE;
-    ctx->level = 0xa;
+    ctx->level = 0x0d;
     // ctx->level = 0x0d; // => 13 aka 1.3
     if (parameters.empty())
         return;