https://github.com/xbmc/xbmc/commit/f08c8f01d1014a7f161d40a7cc8ede0680f9fe77 - aspect ratio https://github.com/xbmc/xbmc/commit/66d2daf7bd90f7be2cb4cdbc5088488627953e3f - fixed upnp caching
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff --git a/xbmc/cores/dvdplayer/DVDCodecs/Video/DVDVideoCodec.h b/xbmc/cores/dvdplayer/DVDCodecs/Video/DVDVideoCodec.h | |
index 0cabbc5..87f951f 100644 | |
--- a/xbmc/cores/dvdplayer/DVDCodecs/Video/DVDVideoCodec.h | |
+++ b/xbmc/cores/dvdplayer/DVDCodecs/Video/DVDVideoCodec.h | |
@@ -207,6 +207,20 @@ public: | |
*/ | |
virtual void SetDropState(bool bDrop) = 0; | |
+ | |
+ enum EFilterFlags { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff --git a/xbmc/rendering/gl/RenderSystemGL.cpp b/xbmc/rendering/gl/RenderSystemGL.cpp | |
index ae10d3e..b334d45 100644 | |
--- a/xbmc/rendering/gl/RenderSystemGL.cpp | |
+++ b/xbmc/rendering/gl/RenderSystemGL.cpp | |
@@ -34,6 +34,7 @@ | |
#include "utils/SystemInfo.h" | |
#include "utils/MathUtils.h" | |
#include "utils/StringUtils.h" | |
+#include <queue> | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# /usr/local/share/usb_modeswitch/12d1:1f01 | |
# Huawei E353 (3.se) and others | |
TargetVendor=0x12d1 | |
TargetProductList="14db,14dc" | |
HuaweiNewMode=1 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import asyncio | |
from asyncio.events import AbstractEventLoop | |
import logging | |
import socket | |
import struct | |
from typing import Optional, Tuple | |
USER_AGENT = "HassTest" | |
def create_listen_socket(addrinfo_iface, addrinfo_mcast): |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
blueprint: | |
name: IKEA Symfonisk Rotary Dimmer | |
description: Use symfonisk as knx relative dimmer | |
domain: automation | |
input: | |
rotary_device: | |
name: Source device | |
selector: | |
device: | |
integration: zha |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* build with gcc -g -Os -m32 testfp.c */ | |
#include <stdio.h> | |
#include <stdlib.h> | |
#include <ucontext.h> | |
#include <signal.h> | |
#include <assert.h> | |
ucontext_t context_step0; | |
ucontext_t context_step1; |