View | Details | Raw Unified | Return to bug 274526 | Differences between
and this patch

Collapse All | Expand All

(-)source/common/picyuv.h (-1 / +1 lines)
Lines 26-30 Link Here
26
26
27
#include "common.h"
27
#include "common.h"
28
#include "md5.h"
28
#include <md5.h>
29
#include "x265.h"
29
#include "x265.h"
30
struct x265_picyuv {};
30
struct x265_picyuv {};
(-)source/encoder/frameencoder.h (-1 lines)
Lines 31-35 Link Here
31
#include "frame.h"
31
#include "frame.h"
32
#include "picyuv.h"
32
#include "picyuv.h"
33
#include "md5.h"
34
33
35
#include "analysis.h"
34
#include "analysis.h"
(-)source/encoder/sei.h (-1 / +1 lines)
Lines 29-33 Link Here
29
#include "slice.h"
29
#include "slice.h"
30
#include "nal.h"
30
#include "nal.h"
31
#include "md5.h"
31
#include <md5.h>
32
32
33
namespace X265_NS {
33
namespace X265_NS {
(-)source/encoder/frameencoder.cpp (-1 / +1 lines)
Lines 426-430 Link Here
426
        m_seiReconPictureDigest.m_method = SEIDecodedPictureHash::MD5;
426
        m_seiReconPictureDigest.m_method = SEIDecodedPictureHash::MD5;
427
        for (int i = 0; i < planes; i++)
427
        for (int i = 0; i < planes; i++)
428
            MD5Final(&m_seiReconPictureDigest.m_state[i], m_seiReconPictureDigest.m_digest[i]);
428
            MD5Final(m_seiReconPictureDigest.m_digest[i], &m_seiReconPictureDigest.m_state[i]);
429
        payloadSize = 1 + 16 * planes;
429
        payloadSize = 1 + 16 * planes;
430
    }
430
    }
(-)source/CMakeLists.txt (+1 lines)
Lines 96-99 Link Here
96
if(UNIX)
96
if(UNIX)
97
    list(APPEND PLATFORM_LIBS pthread)
97
    list(APPEND PLATFORM_LIBS pthread)
98
    list(APPEND PLATFORM_LIBS md)
98
    find_library(LIBRT rt)
99
    find_library(LIBRT rt)
99
    if(LIBRT)
100
    if(LIBRT)
(-)source/common/CMakeLists.txt (-1 lines)
Lines 156-160 Link Here
156
    threadpool.cpp threadpool.h
156
    threadpool.cpp threadpool.h
157
    wavefront.h wavefront.cpp
157
    wavefront.h wavefront.cpp
158
    md5.cpp md5.h
159
    bitstream.h bitstream.cpp
158
    bitstream.h bitstream.cpp
160
    yuv.cpp yuv.h
159
    yuv.cpp yuv.h

Return to bug 274526