mirror of https://github.com/FreeRDP/FreeRDP
Fixed obsolete TAG definitions and use.
This commit is contained in:
parent
77d0c77ed9
commit
aff9a22367
|
@ -37,8 +37,6 @@
|
|||
#endif
|
||||
#endif
|
||||
|
||||
#define TAG FREERDP_TAG("codec")
|
||||
|
||||
/* Fallback support for older libavcodec versions */
|
||||
#if LIBAVCODEC_VERSION_INT < AV_VERSION_INT(54, 59, 100)
|
||||
#define AV_CODEC_ID_H264 CODEC_ID_H264
|
||||
|
@ -265,7 +263,7 @@ static int libavcodec_decompress(H264_CONTEXT* h264, const BYTE* pSrcData,
|
|||
|
||||
#endif
|
||||
#if 0
|
||||
WLog_Print(h264->log, WLOG_INFO, (TAG,
|
||||
WLog_Print(h264->log, WLOG_INFO,
|
||||
"libavcodec_decompress: frame decoded (status=%d, gotFrame=%d, width=%d, height=%d, Y=[%p,%d], U=[%p,%d], V=[%p,%d])",
|
||||
status, gotFrame, sys->videoFrame->width, sys->videoFrame->height,
|
||||
(void*) sys->videoFrame->data[0], sys->videoFrame->linesize[0],
|
||||
|
|
|
@ -25,8 +25,6 @@
|
|||
#include "wels/codec_api.h"
|
||||
#include "wels/codec_ver.h"
|
||||
|
||||
#define TAG FREERDP_TAG("codec")
|
||||
|
||||
#if (OPENH264_MAJOR == 1) && (OPENH264_MINOR < 3) || (OPENH264_MAJOR < 1)
|
||||
#error "Unsupported OpenH264 version "OPENH264_MAJOR"."OPENH264_MINOR"."OPENH264_REVISION" detected!"
|
||||
#elif (OPENH264_MAJOR > 1) || (OPENH264_MINOR > 7)
|
||||
|
|
Loading…
Reference in New Issue