Ver código fonte

get rid of c++11 stuff

tags/v1.12.90
Vladimir Sukhonosov 2 anos atrás
pai
commit
44f9a4d038
2 arquivos alterados com 3 adições e 3 exclusões
  1. 2
    2
      common/rfb/H264Decoder.cxx
  2. 1
    1
      common/rfb/H264DecoderContext.h

+ 2
- 2
common/rfb/H264Decoder.cxx Ver arquivo

@@ -115,8 +115,8 @@ void H264Decoder::decodeRect(const Rect& r, const void* buffer,
os::AutoMutex lock(&mutex);
if (contexts.size() >= MAX_H264_INSTANCES)
{
auto excecc_ctx = contexts.front();
delete excecc_ctx;
H264DecoderContext* excess_ctx = contexts.front();
delete excess_ctx;
contexts.pop_front();
}
ctx = H264DecoderContext::createContext(r);

+ 1
- 1
common/rfb/H264DecoderContext.h Ver arquivo

@@ -42,7 +42,7 @@ namespace rfb {
protected:
os::Mutex mutex;
rfb::Rect rect;
bool initialized = false;
bool initialized;

H264DecoderContext(const Rect &r) : rect(r) { initialized = false; }


Carregando…
Cancelar
Salvar