123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202 |
- #include "stdafx.h"
- #include <io.h>
- #include "SpBase.h"
- #include "video_session.h"
- #include "videoframework.h"
- #include "memutil.h"
- #include <ObjBase.h>
- #include "videohorflip.h"
- #include "opencv2/opencv.hpp"
- #include "highgui.h"
- #include "y2k_time.h"
- #include "Event.h"
- #ifndef av_always_inline
- #define av_always_inline __inline
- #endif
- #ifndef inline
- #define inline __inline
- #endif
- #ifndef INT64_C
- #define INT64_C(c) (c##LL)
- #define UINT64_C(c) (c##UL)
- #endif
- extern "C"{
- #include <libavutil\avutil.h>
- #include <libavcodec\avcodec.h>
- #include <libswscale\swscale.h>
- }
- #include "video_common/ffmpeg_api_cpp_adapter.h"
- #include <DbgHelp.h>
- #pragma comment(lib, "dbghelp.lib")
- HWND pg_local_hwnd = NULL; // preview window
- HWND pg_remote_hwnd = NULL; // remote window
- void* pg_local_render = NULL; // local render
- void* pg_remote_render = NULL; // remote render
- video_session_t* pg_last_session = NULL; // last used session
- #define WNDCLS_NAME "sipmedia_video"
- #ifndef MAX_PATH
- #define MAX_PATH 260
- #endif
- static void __dbg(void *user_data, const char *fmt, va_list arg)
- {
- int n = _vsnprintf(NULL, 0, fmt, arg);
- if (n >= MAX_LOG_LEN) {
- char* buf = (char*)malloc((size_t)(n + 1));
- _vsnprintf(buf, n + 1, fmt, arg);
- DbgWithLink(LOG_LEVEL_DEBUG, LOG_TYPE_SYSTEM)("%s", buf);
- free(buf);
- }
- else{
- char strlog[MAX_LOG_LEN] = {0};
- _vsnprintf(strlog, MAX_LOG_LEN, fmt, arg);
- DbgWithLink(LOG_LEVEL_DEBUG, LOG_TYPE_SYSTEM)("%s", strlog);
- }
- }
- static void __logevent(void* user_data, int itype, const char* strmessage)
- {
- if (0 == itype) {
- LogWarn(Severity_Low, Error_Debug, EVENT_MOD_SIP_VIDEO_RTP_CREATE, strmessage);
- }
- else {
- LogWarn(Severity_Low, Error_Debug, EVENT_MOD_SIP_VIDEO_RTP_DESTROY, strmessage);
- }
- }
- static bool __camera_error_event(bool bhaspost, int icameraid)
- {
- bool bret = false;
- if (false == bhaspost){
- if (0 == icameraid){
- LogWarn(Severity_Middle, Error_Debug, ERROR_MOD_SIP_GET_ENV_VIDEO_FAILED, "get video from env queue failed!");
- }
- else{
- LogWarn(Severity_Middle, Error_Debug, ERROR_MOD_SIP_GET_OPT_VIDEO_FAILED, "get video from opt queue failed!");
- }
- LogEvent(Severity_Middle, EVENT_MOD_SIP_GET_VIDEO_FAILED, "connected and get video failed!");
- DbgWithLink(LOG_LEVEL_ERROR, LOG_TYPE_SYSTEM).setResultCode("RTA3119")("接通坐席后本地视频回显异常");
- bret = true;
- }
- return bret;
- }
- static int translate_image_resolution(video_frame** dstframe,const int iwidth, const int iheight, const video_frame* psrcframe)
- {
- int i = -1;
- if (iwidth == psrcframe->width && iheight == psrcframe->height){
- return i;
- }
- video_frame* pframe = video_frame_new(iwidth, iheight,VIDEO_FORMAT_RGB24);
- video_frame_fill_black(pframe);
- SwsContext* sws = sws_getCachedContext(NULL, psrcframe->width, psrcframe->height,
- PIX_FMT_BGR24,
- iwidth,
- iheight,
- PIX_FMT_BGR24,
- SWS_LANCZOS,
- NULL,
- NULL,
- NULL);
- sws_scale(sws, psrcframe->data, psrcframe->linesize, 0, psrcframe->height, pframe->data, pframe->linesize);
- sws_freeContext(sws);
- *dstframe = pframe;
- i = 0;
- return i;
- }
- static int calc_capture_mode(int width, int height, int *mode)
- {
- const struct {
- int mode;
- int width;
- int height;
- } modes [] = {
- {VIDEOCAP_FRAME_SQCIF, VIDEOCAP_SQCIF_WIDTH, VIDEOCAP_SQCIF_HEIGHT},
- {VIDEOCAP_FRAME_QQVGA, VIDEOCAP_QQVGA_WIDTH, VIDEOCAP_QQVGA_HEIGHT},
- {VIDEOCAP_FRAME_QCIF, VIDEOCAP_QCIF_WIDTH, VIDEOCAP_QCIF_HEIGHT},
- {VIDEOCAP_FRAME_QVGA, VIDEOCAP_QVGA_WIDTH, VIDEOCAP_QVGA_HEIGHT},
- {VIDEOCAP_FRAME_CIF, VIDEOCAP_CIF_WIDTH, VIDEOCAP_CIF_HEIGHT},
- {VIDEOCAP_FRAME_VGA, VIDEOCAP_VGA_WIDTH, VIDEOCAP_VGA_HEIGHT},
- {VIDEOCAP_FRAME_4CIF, VIDEOCAP_4CIF_WIDTH, VIDEOCAP_4CIF_HEIGHT},
- {VIDEOCAP_FRAME_SVGA, VIDEOCAP_SVGA_WIDTH, VIDEOCAP_SVGA_HEIGHT},
- {VIDEOCAP_FRAME_NHD, VIDEOCAP_NHD_WIDTH, VIDEOCAP_NHD_HEIGHT},
- {VIDEOCAP_FRAME_SXGA, VIDEOCAP_SXGA_WIDTH, VIDEOCAP_SXGA_HEIGHT},
- {VIDEOCAP_FRAME_720P, VIDEOCAP_720P_WIDTH, VIDEOCAP_720P_HEIGHT},
- {VIDEOCAP_FRAME_1080P, VIDEOCAP_1080P_WIDTH, VIDEOCAP_1080P_HEIGHT},
- };
- int i;
- for (i = 0; i < array_size(modes); ++i) {
- if (modes[i].width == width && modes[i].height == height) {
- *mode = modes[i].mode;
- return 0;
- }
- }
- return Error_NotExist;
- }
- #ifdef RVC_OS_WIN
- static void __delete_frame(videoplayer_t *player, void *user_data, video_frame *frame)
- {
- video_frame_delete(frame);
- }
- #endif
- static int video_shm_enqueue(Clibvideoqueue *shm_queue, video_frame *frame, int flags, int iframeid)
- {
- videoq_frame tmp_frm;
- tmp_frm.data = frame->data[0];
- tmp_frm.framesize = frame->width * frame->height * 3;
- tmp_frm.format = VIDEOQ_FORMAT_RGB24;
- tmp_frm.width = frame->width;
- tmp_frm.height = frame->height;
- tmp_frm.iframeid = iframeid;
- unsigned int nowtime = y2k_time_now();
- if (!shm_queue->InsertVideo(&tmp_frm, flags,nowtime))
- {
- DbgWithLink(LOG_LEVEL_INFO, LOG_TYPE_SYSTEM)("caution: shm_queue video insert shm video failed!");
- return Error_Unexpect;
- }
- else
- {
- return Error_Succeed;
- }
- }
- static inline Clibvideoqueue *get_active_videoqueue(video_session_t *session)
- {
- int agent_option = *session->conf.ref_camera_switch;
- int facetracking_option = *session->conf.ref_active_camera;
- int camera_state = *session->conf.ref_camera_state;
- Clibvideoqueue *active = NULL;
- if (agent_option == CAMERA_TYPE_ENV)
- {
- if((camera_state!=CAMERA_TYPE_ENV)&&(camera_state!=CAMERA_TYPE_AUTO))
- {
- active = NULL;
- }
- else
- {
- active = session->video_shm_q_env;
- }
- }
- else if (agent_option == CAMERA_TYPE_OPT)
- {
- if((camera_state!=CAMERA_TYPE_OPT)&&(camera_state!=CAMERA_TYPE_AUTO))
- {
- active = NULL;
- }
- else
- {
- active = session->video_shm_q_opt;
- }
-
- }
- else if(agent_option == CAMERA_TYPE_ERROR)
- {
- active = NULL;
- }
- else
- { // auto
- if (camera_state == CAMERA_TYPE_AUTO)
- {
- if (facetracking_option == CAMERA_TYPE_ENV)
- {
- active = session->video_shm_q_env;
- }
- else
- { // opt
- active = session->video_shm_q_opt;
- }
- }
- else if (camera_state == CAMERA_TYPE_ENV)
- {
- active = session->video_shm_q_env;
- }
- else if (camera_state == CAMERA_TYPE_OPT)
- {
- active = session->video_shm_q_opt;
- }
- else if (camera_state == CAMERA_TYPE_ERROR)
- {
- active = NULL;
- }
- }
- return active;
- }
- static void local_get_frame(void *user_data, video_frame *frame)
- {
- video_session_t *session = (video_session_t*)user_data;
- Clibvideoqueue *q = get_active_videoqueue(session);
- if (q)
- {
- videoq_frame frm;
- frm.data = frame->data[0];
- if (q->GetVideo(&frm, 0))
- {
- //video_frame_fill_black(frame);
- frame->width = frm.width;
- frame->height = frm.height;
- frame->linesize[0] = frm.width * 3;
- }
- }
- else
- {
- //video_frame_fill_black(frame);
- //贴图
- DbgWithLink(LOG_LEVEL_DEBUG, LOG_TYPE_SYSTEM)("get active cam is null, load error img.");
- if (session->video_error != NULL)
- {
- frame->width = session->video_error->width;
- frame->height = session->video_error->height;
- frame->linesize[0] = session->video_error->width * 3;
- memcpy(frame->data[0],session->video_error->data,frame->width*frame->height*3);
- }
- else
- {
- DbgWithLink(LOG_LEVEL_INFO, LOG_TYPE_SYSTEM)("video error img is null");
- }
- }
- }
- static void local_put_frame(void *user_data, video_frame *frame)
- {
- video_session_t *session = (video_session_t*)user_data;
- video_frame *tmp_frame_encode = NULL;
- int rc;
- // send out
- {
- tmp_frame_encode = video_frame_new(REC_COMMON_VIDEO_RTP_WIDTH, REC_COMMON_VIDEO_RTP_HEIGHT, VIDEO_FORMAT_I420);
- video_frame_fill_black(tmp_frame_encode);
- if (frame->width == REC_COMMON_VIDEO_RTP_ENV_WIDTH && frame->height == REC_COMMON_VIDEO_RTP_ENV_HEIGHT) { // env
- int offset = (REC_COMMON_VIDEO_RTP_HEIGHT - REC_COMMON_VIDEO_RTP_ENV_HEIGHT) / 2;
- unsigned char *dst_data[4] = {tmp_frame_encode->data[0], tmp_frame_encode->data[1], tmp_frame_encode->data[2], NULL};
- dst_data[0] += offset * tmp_frame_encode->linesize[0];
- dst_data[1] += offset / 2 * tmp_frame_encode->linesize[1];
- dst_data[2] += offset / 2 * tmp_frame_encode->linesize[2];
- sws_scale(session->local_encode_sws_ctx_env, frame->data, frame->linesize, 0, frame->height, dst_data, tmp_frame_encode->linesize);
- }
- else if (frame->width == REC_COMMON_VIDEO_RTP_OPT_WIDTH && frame->height == REC_COMMON_VIDEO_RTP_OPT_HEIGHT) { // opt
- video_frame tt;
- video_frame_alloc(REC_COMMON_VIDEO_RTP_WIDTH, REC_COMMON_VIDEO_RTP_HEIGHT, VIDEO_FORMAT_RGB24, &tt);
- video_frame_fill_black(&tt);
- {
- int offset = (REC_COMMON_VIDEO_RTP_WIDTH - REC_COMMON_VIDEO_RTP_OPT_WIDTH) / 2;
- unsigned char *dst_data[4] = {tt.data[0], 0, 0, 0};
- dst_data[0] += offset * 3;
- IppiSize size;
- size.width = frame->width;
- size.height = frame->height;
- ippiCopy_8u_C3R(frame->data[0], frame->linesize[0], tt.data[0] + offset * 3, tt.linesize[0], size);
- }
- sws_scale(session->local_encode_sws_ctx_opt, tt.data, tt.linesize, 0, tt.height, tmp_frame_encode->data, tmp_frame_encode->linesize);
- video_frame_free(&tt);
- }
- if (session->conf.local_pt == REC_COMMON_VIDEO_PT)
- {
- videortp_send_frame(session->rtp, tmp_frame_encode);
- }
- else
- {
- videortp_send_yuvframe(session->rtp, tmp_frame_encode);
- }
- }
- on_error:
- if (tmp_frame_encode) {
- video_frame_delete(tmp_frame_encode);
- }
- }
- static int on_rx_frame(video_frame *frame, void *user_data)
- {
- video_session_t *session = (video_session_t *)user_data;
- int used = 0;
- session->irecv_frameid++;
- if (eGDI == session->conf.eType)
- {
- if (session->remote_player) {
- if(DOUBLERECORD_CALLTYPE == session->conf.nCallType){
- if (eStand2sType == session->conf.eDeviceType){
- //大机对远端视频进行缩放匹配
- video_frame* recordframe = NULL;
- if(0 == translate_image_resolution(&recordframe,/*REC_COMMON_VIDEO_SSM_AGENT_WIDTH*/REC_COMMON_VIDEO_SNAPSHOT_PREVIEW_WIDTH,/*REC_COMMON_VIDEO_SSM_AGENT_HEIGHT*/REC_COMMON_VIDEO_SNAPSHOT_PREVIEW_HEIGHT,frame)){
- int rc = video_shm_enqueue(session->video_shm_q_remote, recordframe, VIDEOQUEUE_FLAG_VERTICAL_FLIP, session->irecv_frameid);
- if (rc != Error_Succeed) {
- DbgWithLink(LOG_LEVEL_INFO, LOG_TYPE_SYSTEM)("eStand2sType record call mod insert remote video to queue failed!");
- }
- video_frame_delete(recordframe);
- }
- recordframe = NULL;
- }
- else{
- int rc = video_shm_enqueue(session->video_shm_q_remote, frame, VIDEOQUEUE_FLAG_VERTICAL_FLIP, session->irecv_frameid);
- if (rc != Error_Succeed) {
- DbgWithLink(LOG_LEVEL_INFO, LOG_TYPE_SYSTEM)("not eStand2sType record call mod insert remote video to queue failed!");
- }
- }
- }
- int rc = videoplayer_queue_frame(session->remote_player, frame, &__delete_frame, NULL);
- if (rc == 0) {
- used = 1;
- }
- }
- }
- else{
- if (DOUBLERECORD_CALLTYPE == session->conf.nCallType) {
- if (eStand2sType == session->conf.eDeviceType) {
- video_frame* recordframe = NULL;
- if (0 == translate_image_resolution(&recordframe, REC_COMMON_VIDEO_SNAPSHOT_PREVIEW_WIDTH, REC_COMMON_VIDEO_SNAPSHOT_PREVIEW_HEIGHT, frame)) {
- int rc = video_shm_enqueue(session->video_shm_q_remote, recordframe, VIDEOQUEUE_FLAG_VERTICAL_FLIP, session->irecv_frameid);
- if (rc != Error_Succeed) {
- DbgWithLink(LOG_LEVEL_INFO, LOG_TYPE_SYSTEM)("eStand2sType record call mod insert remote video to queue failed.");
- }
- video_frame_delete(recordframe);
- recordframe = NULL;
- }
- }
- else {
- int rc = video_shm_enqueue(session->video_shm_q_remote, frame, VIDEOQUEUE_FLAG_VERTICAL_FLIP, session->irecv_frameid);
- if (rc != Error_Succeed) {
- DbgWithLink(LOG_LEVEL_INFO, LOG_TYPE_SYSTEM)("not eStand2sType record call mod insert remote video to queue failed.");
- }
- }
- }
- if (NULL != session->premote_render){
- //DbgWithLink(LOG_LEVEL_INFO, LOG_TYPE_SYSTEM)("session plocal_render RenderVideoFrame");
- video_frame* echoframe = NULL;
- if (0 == translate_image_resolution(&echoframe,session->conf.remote_video_view_cx,session->conf.remote_video_view_cy, frame)) {
- session->premote_render->RenderVideoFrame(echoframe, RVC_FLIP_VERTICAL);
- session->bshow_remote = true;
- video_frame_delete(echoframe);
- echoframe = NULL;
- }
- else {
- session->premote_render->RenderVideoFrame(frame, RVC_FLIP_VERTICAL);
- session->bshow_remote = true;
- }
- used = 1;
- }
- }
- return used;
- }
- int GetCurrentRunPath(char* pPath)
- {
- char* pBuf = new char[MAX_PATH];
- if (pBuf == NULL)
- return -1;
- ZeroMemory(pBuf, MAX_PATH);
- GetModuleFileName(NULL, pBuf, MAX_PATH);
- int len = strnlen_s(pBuf, MAX_PATH);
- if (len <= 0)
- {
- delete[]pBuf;
- return -2;
- }
- char* pch;
- pch = strstr(pBuf, "bin");
- if (pch == NULL)
- return -3;
- int lenDel = strnlen_s(pch, MAX_PATH);
- if (len <= 0)
- {
- delete[]pBuf;
- return -3;
- }
- strncpy_s(pPath, MAX_PATH, pBuf, len - lenDel);
- delete[]pBuf;
- return strnlen_s(pPath, MAX_PATH);
- }
- //远端视频窗口状态回调
- static int on_remoteWinstate(videoplayer_t *player, void *user_data, video_frame **frame)
- {
- video_session_t *session = (video_session_t*)user_data;
- return *session->conf.ref_window_state ;
- }
- //本地回显回调
- static int on_pull(videoplayer_t *player, void *user_data, video_frame **frame)
- {
- video_session_t *session = (video_session_t*)user_data;
- video_frame *tmp_frame_preview;
-
- int iflags = 0;
- //DbgWithLink(LOG_LEVEL_INFO, LOG_TYPE_SYSTEM)("ref_active_img %d,ref_Is_ActiveInspect %d,ref_camera_switch %d",*session->conf.ref_active_img,*session->conf.ref_Is_ActiveInspect,*session->conf.ref_camera_switch);
- if((session->conf.ref_active_img == NULL)&&(session->conf.ref_Is_ActiveInspect == NULL))
- {
- tmp_frame_preview = video_frame_new(REC_COMMON_VIDEO_PREVIEW_WIDTH, REC_COMMON_VIDEO_PREVIEW_HEIGHT, VIDEO_FORMAT_RGB24);
- videoq_frame frm;
- frm.data = tmp_frame_preview->data[0];
- bool result = session->video_shm_q_preview->GetVideo(&frm, iflags);
- //人形框融合处理
- if (result&&session->personimage!=NULL&&session->personmask!=NULL&&*session->conf.ref_Is_showPersonArea==1)
- {
- IplImage*img = cvCreateImageHeader(cvSize(frm.width,frm.height),IPL_DEPTH_8U,3);
- img->imageData = (char*)frm.data;
- if (frm.width!=session->personimage->width)
- {
- IplImage*tmp = cvCreateImage(cvSize(frm.width,frm.height),IPL_DEPTH_8U,3);
- IplImage*tmpmask = cvCreateImage(cvSize(frm.width,frm.height),IPL_DEPTH_8U,1);
- cvResize(session->personimage,tmp);
- cvResize(session->personmask,tmpmask);
- cvAdd(img,tmp,img,tmpmask);
- cvReleaseImage(&tmp);
- cvReleaseImage(&tmpmask);
- }
- else
- {
- cvAdd(img,session->personimage,img,session->personmask);
- }
- cvReleaseImageHeader(&img);
- }
- if (!result){
- if (__camera_error_event(session->bcamera_error_posted, 0)){
- session->bcamera_error_posted = true;
- }
- }
- }
- else
- {
- if (*session->conf.ref_active_img == 1)
- {
- tmp_frame_preview = video_frame_new(REC_COMMON_VIDEO_SNAPSHOT_WIDTH, REC_COMMON_VIDEO_SNAPSHOT_WIDTH, VIDEO_FORMAT_RGB24);
- video_frame_fill_black(tmp_frame_preview);
- if (session->video_error == NULL)
- {
- char strPath[MAX_PATH] = {0};
- GetCurrentRunPath(strPath);
- _snprintf(strPath, MAX_PATH, "%s\\bin\\looklowerscreen.jpg", strPath);
- if (_access(strPath,0)!=-1)
- {
- IplImage*img = cvLoadImage(strPath,1);
- if (img != NULL)
- {
- session->video_error = new videoq_frame;
- session->video_error->format = VIDEOQ_FORMAT_RGB24;
- session->video_error->framesize = img->imageSize;
- session->video_error->height = img->width;
- session->video_error->width = img->height;
- session->video_error->data = new unsigned char[img->imageSize];
- memcpy(session->video_error->data,img->imageData,img->imageSize);
- cvReleaseImage(&img);
- }
- }
- }
- if (session->video_error != NULL)
- {
- SwsContext*sws = sws_getContext(session->video_error->width, session->video_error->height,PIX_FMT_BGR24,
- REC_COMMON_VIDEO_SNAPSHOT_WIDTH,
- REC_COMMON_VIDEO_SNAPSHOT_WIDTH,
- PIX_FMT_BGR24,
- SWS_POINT, NULL, NULL, NULL);
- uint8_t *src_data[4] = {(unsigned char*)session->video_error->data+(session->video_error->height-1)*session->video_error->width*3,NULL,NULL,NULL};
- int src_linesize[4] = {-session->video_error->width*3,0,0,0};
- unsigned char *dst[4] = {tmp_frame_preview->data[0],NULL,NULL,NULL};
- int dst_linesize[4] = {tmp_frame_preview->linesize[0],0,0,0};
- sws_scale(sws, src_data, src_linesize, 0, session->video_error->height, dst, dst_linesize);
- sws_freeContext(sws);
- }
- }
- else if (*session->conf.ref_Is_ActiveInspect == 1)
- {
- tmp_frame_preview = video_frame_new(REC_COMMON_VIDEO_SNAPSHOT_WIDTH, REC_COMMON_VIDEO_SNAPSHOT_WIDTH, VIDEO_FORMAT_RGB24);
- video_frame_fill_black(tmp_frame_preview);
- if ((*session->conf.ref_camera_switch == CAMERA_TYPE_ENV)||(*session->conf.ref_camera_switch == CAMERA_TYPE_AUTO))//显示上摄像头
- {
- if (session->video_shm_q_env)
- {
- videoq_frame frm;
- int offset = (REC_COMMON_VIDEO_SNAPSHOT_WIDTH - REC_COMMON_VIDEO_SNAPSHOT_HEIGHT) / 2;
- frm.data = tmp_frame_preview->data[0] + offset * tmp_frame_preview->linesize[0];
- if (false == session->video_shm_q_env->GetVideo(&frm, VIDEOQUEUE_FLAG_VERTICAL_FLIP)){
- session->bcamera_error_posted = true;
- }
- }
- }
- else if (*session->conf.ref_camera_switch == CAMERA_TYPE_OPT)//显示下摄像头
- {
- if (session->video_shm_q_opt)
- {
- video_frame tt = {0};
- int offset = (REC_COMMON_VIDEO_SNAPSHOT_WIDTH-REC_COMMON_VIDEO_SNAPSHOT_HEIGHT) / 2;
- tt.data[0] = tmp_frame_preview->data[0] + offset *3;
- tt.format = tmp_frame_preview->format;
- tt.linesize[0] = tmp_frame_preview->linesize[0];
- tt.width = REC_COMMON_VIDEO_SNAPSHOT_HEIGHT;
- tt.height = REC_COMMON_VIDEO_SNAPSHOT_WIDTH;
- if (false == session->video_shm_q_opt->GetVideo2(&tt, VIDEOQUEUE_FLAG_VERTICAL_FLIP)){
- if (__camera_error_event(session->bcamera_error_posted, 1)){
- session->bcamera_error_posted = true;
- }
- }
- }
- }
- }
- else
- {
- int iwidth = REC_COMMON_VIDEO_PREVIEW_WIDTH;
- int iheight = REC_COMMON_VIDEO_PREVIEW_HEIGHT;
- session->video_shm_q_preview->GetFrameSize(iwidth, iheight);
- tmp_frame_preview = video_frame_new(iwidth, iheight, VIDEO_FORMAT_RGB24);
- videoq_frame frm;
- frm.data = tmp_frame_preview->data[0];
- bool result = session->video_shm_q_preview->GetVideo(&frm, iflags);
- //人形框融合处理
- if (result&&session->personimage!=NULL&&session->personmask!=NULL&&*session->conf.ref_Is_showPersonArea==1)
- {
- IplImage*img = cvCreateImageHeader(cvSize(frm.width,frm.height),IPL_DEPTH_8U,3);
- img->imageData = (char*)frm.data;
- if (frm.width!=session->personimage->width)
- {
- IplImage*tmp = cvCreateImage(cvSize(frm.width,frm.height),IPL_DEPTH_8U,3);
- IplImage*tmpmask = cvCreateImage(cvSize(frm.width,frm.height),IPL_DEPTH_8U,1);
- cvResize(session->personimage,tmp);
- cvResize(session->personmask,tmpmask);
- cvAdd(img,tmp,img,tmpmask);
- cvReleaseImage(&tmp);
- cvReleaseImage(&tmpmask);
- }
- else
- {
- cvAdd(img,session->personimage,img,session->personmask);
- }
- cvReleaseImageHeader(&img);
- }
- if (!result){
- if (__camera_error_event(session->bcamera_error_posted, 0)){
- session->bcamera_error_posted = true;
- }
- }
- }
- }
- *frame = tmp_frame_preview;
- return *session->conf.ref_window_state;
- }
- static void free_frame(videoplayer_t *player, void *user_data, video_frame *frame)
- {
- video_frame_delete(frame);
- }
- //视频窗口显示状态,0:正常大小显示,1:放大一倍显示,2:隐藏全部窗口,3:从隐藏状态恢复为全部显示,4:显示远程窗口,隐藏本地窗口, 5:缩放显示
- int set_video_windows(video_session_t* psession, int iwindowstate)
- {
- int iret = -1;
- if (NULL == psession){
- return iret;
- }
- if (2 == iwindowstate){
- psession->plocal_render->HideVideoWindow();
- psession->premote_render->HideVideoWindow();
- iret = 0;
- }
- else if (3 == iwindowstate){
- psession->plocal_render->ShowVideoWindow();
- psession->premote_render->HideVideoWindow();
- psession->premote_render->ShowVideoWindow();
- iret = 0;
- }
- else if (4 == iwindowstate) {
- psession->plocal_render->HideVideoWindow();
- iret = 0;
- }
- return iret;
- }
- //本地回显回调
- static int get_local_video_frame(void* user_data, video_frame** frame)
- {
- video_session_t* session = (video_session_t*)user_data;
- video_frame* tmp_frame_preview = NULL;
- //DbgWithLink(LOG_LEVEL_INFO, LOG_TYPE_SYSTEM)("ref_active_img %d,ref_Is_ActiveInspect %d,ref_camera_switch %d",*session->conf.ref_active_img,*session->conf.ref_Is_ActiveInspect,*session->conf.ref_camera_switch);
- if ((session->conf.ref_active_img == NULL) && (session->conf.ref_Is_ActiveInspect == NULL))
- {
- tmp_frame_preview = video_frame_new(REC_COMMON_VIDEO_PREVIEW_WIDTH, REC_COMMON_VIDEO_PREVIEW_HEIGHT, VIDEO_FORMAT_RGB24);
- videoq_frame frm;
- frm.data = tmp_frame_preview->data[0];
- bool result = session->video_shm_q_preview->GetVideo(&frm, VIDEOQUEUE_FLAG_HORIZONTAL_FLIP);
- //人形框融合处理
- if (result){
- if (session->personimage != NULL && session->personmask != NULL && *session->conf.ref_Is_showPersonArea == 1)
- {
- IplImage* img = cvCreateImageHeader(cvSize(frm.width, frm.height), IPL_DEPTH_8U, 3);
- img->imageData = (char*)frm.data;
- if (frm.width != session->personimage->width){
- IplImage* tmp = cvCreateImage(cvSize(frm.width, frm.height), IPL_DEPTH_8U, 3);
- IplImage* tmpmask = cvCreateImage(cvSize(frm.width, frm.height), IPL_DEPTH_8U, 1);
- cvResize(session->personimage, tmp);
- cvResize(session->personmask, tmpmask);
- cvAdd(img, tmp, img, tmpmask);
- cvReleaseImage(&tmp);
- cvReleaseImage(&tmpmask);
- }
- else{
- cvAdd(img, session->personimage, img, session->personmask);
- }
- cvReleaseImageHeader(&img);
- }
- }
- else {
- video_frame_fill_black(tmp_frame_preview);
- }
- }
- else
- {
- if (*session->conf.ref_active_img == 1)
- {
- tmp_frame_preview = video_frame_new(REC_COMMON_VIDEO_SNAPSHOT_WIDTH, REC_COMMON_VIDEO_SNAPSHOT_WIDTH, VIDEO_FORMAT_RGB24);
- video_frame_fill_black(tmp_frame_preview);
- if (session->video_error == NULL)
- {
- char strPath[MAX_PATH] = { 0 };
- _snprintf(strPath, MAX_PATH, "%s", "./bin/looklowerscreen.jpg");
- if (-1 != _access(strPath,0))
- {
- IplImage* img = cvLoadImage(strPath, 1);
- if (img != NULL)
- {
- session->video_error = new videoq_frame;
- session->video_error->format = VIDEOQ_FORMAT_RGB24;
- session->video_error->framesize = img->imageSize;
- session->video_error->height = img->width;
- session->video_error->width = img->height;
- session->video_error->data = new unsigned char[img->imageSize];
- memcpy(session->video_error->data, img->imageData, img->imageSize);
- cvReleaseImage(&img);
- }
- }
- }
- if (session->video_error != NULL)
- {
- SwsContext* sws = sws_getContext(session->video_error->width, session->video_error->height, PIX_FMT_BGR24,
- REC_COMMON_VIDEO_SNAPSHOT_WIDTH,
- REC_COMMON_VIDEO_SNAPSHOT_WIDTH,
- PIX_FMT_BGR24,
- SWS_POINT, NULL, NULL, NULL);
- uint8_t* src_data[4] = { (unsigned char*)session->video_error->data + (session->video_error->height - 1) * session->video_error->width * 3,NULL,NULL,NULL };
- int src_linesize[4] = { -session->video_error->width * 3,0,0,0 };
- unsigned char* dst[4] = { tmp_frame_preview->data[0],NULL,NULL,NULL };
- int dst_linesize[4] = { tmp_frame_preview->linesize[0],0,0,0 };
- sws_scale(sws, src_data, src_linesize, 0, session->video_error->height, dst, dst_linesize);
- sws_freeContext(sws);
- }
- }
- else if (*session->conf.ref_Is_ActiveInspect == 1)
- {
- tmp_frame_preview = video_frame_new(REC_COMMON_VIDEO_SNAPSHOT_WIDTH, REC_COMMON_VIDEO_SNAPSHOT_WIDTH, VIDEO_FORMAT_RGB24);
- video_frame_fill_black(tmp_frame_preview);
- if ((*session->conf.ref_camera_switch == CAMERA_TYPE_ENV) || (*session->conf.ref_camera_switch == CAMERA_TYPE_AUTO))//显示上摄像头
- {
- if (session->video_shm_q_env)
- {
- videoq_frame frm;
- int offset = (REC_COMMON_VIDEO_SNAPSHOT_WIDTH - REC_COMMON_VIDEO_SNAPSHOT_HEIGHT) / 2;
- frm.data = tmp_frame_preview->data[0] + offset * tmp_frame_preview->linesize[0];
- session->video_shm_q_env->GetVideo(&frm, VIDEOQUEUE_FLAG_VERTICAL_FLIP);
- }
- }
- else if (*session->conf.ref_camera_switch == CAMERA_TYPE_OPT)//显示下摄像头
- {
- if (session->video_shm_q_opt)
- {
- video_frame tt = { 0 };
- int offset = (REC_COMMON_VIDEO_SNAPSHOT_WIDTH - REC_COMMON_VIDEO_SNAPSHOT_HEIGHT) / 2;
- tt.data[0] = tmp_frame_preview->data[0] + offset * 3;
- tt.format = tmp_frame_preview->format;
- tt.linesize[0] = tmp_frame_preview->linesize[0];
- tt.width = REC_COMMON_VIDEO_SNAPSHOT_HEIGHT;
- tt.height = REC_COMMON_VIDEO_SNAPSHOT_WIDTH;
- session->video_shm_q_opt->GetVideo2(&tt, VIDEOQUEUE_FLAG_VERTICAL_FLIP);
- }
- }
- }
- else
- {
- tmp_frame_preview = video_frame_new(REC_COMMON_VIDEO_PREVIEW_WIDTH, REC_COMMON_VIDEO_PREVIEW_HEIGHT, VIDEO_FORMAT_RGB24);
- videoq_frame frm;
- frm.data = tmp_frame_preview->data[0];
- bool result = session->video_shm_q_preview->GetVideo(&frm, VIDEOQUEUE_FLAG_HORIZONTAL_FLIP);
- if (result){
- //人形框融合处理
- if (session->personimage != NULL && session->personmask != NULL && *session->conf.ref_Is_showPersonArea == 1)
- {
- IplImage* img = cvCreateImageHeader(cvSize(frm.width, frm.height), IPL_DEPTH_8U, 3);
- img->imageData = (char*)frm.data;
- if (frm.width != session->personimage->width)
- {
- IplImage* tmp = cvCreateImage(cvSize(frm.width, frm.height), IPL_DEPTH_8U, 3);
- IplImage* tmpmask = cvCreateImage(cvSize(frm.width, frm.height), IPL_DEPTH_8U, 1);
- cvResize(session->personimage, tmp);
- cvResize(session->personmask, tmpmask);
- cvAdd(img, tmp, img, tmpmask);
- cvReleaseImage(&tmp);
- cvReleaseImage(&tmpmask);
- }
- else
- {
- cvAdd(img, session->personimage, img, session->personmask);
- }
- cvReleaseImageHeader(&img);
- }
- }
- else {
- video_frame_fill_black(tmp_frame_preview);
- }
- }
- }
- *frame = tmp_frame_preview;
- return *session->conf.ref_window_state;
- }
- int show_agent_picture_proc(void *arg)
- {
- picture_record_t *t_record = (picture_record_t*)arg;
- if (NULL == t_record){
- DbgWithLink(LOG_LEVEL_INFO, LOG_TYPE_SYSTEM)("show_agent_picture_proc param valid.");
- return -1;
- }
-
- SetThreadPriority(GetCurrentThread(), THREAD_PRIORITY_ABOVE_NORMAL);
- int iframeid = 1;
-
- for ( ; ; ) {
- DWORD dwRet = WaitForSingleObject(t_record->evt, 200);
- if (dwRet == WAIT_TIMEOUT){
- if (NULL != t_record->session)
- {
- if (NULL != t_record->session->video_shm_q_remote)
- {
- int rc = video_shm_enqueue(t_record->session->video_shm_q_remote, t_record->record_frame, VIDEOQUEUE_FLAG_VERTICAL_FLIP, iframeid++);
- if (rc != Error_Succeed)
- {
- DbgWithLink(LOG_LEVEL_INFO, LOG_TYPE_SYSTEM)("mobile mod insert remote video to queue failed.");
- }
- }
- video_frame* showframe = video_frame_new(t_record->show_frame->width, t_record->show_frame->height, VIDEO_FORMAT_RGB24);
- video_frame_fill_black(showframe);
- video_frame_copy(showframe, t_record->show_frame);
- int iused = on_rx_frame(showframe, t_record->session);
- if (0 == iused){
- video_frame_delete(showframe);
- }
- }
- }
- else {
- break;
- }
- }
- return 0;
- }
- //坐席端图像显示线程
- static unsigned int __stdcall agent_picture_show_thread(void* arg)
- {
- show_agent_picture_proc(arg);
- return 0;
- }
- static int agent_picture_video_start(picture_record_t* t_record)
- {
- t_record->evt = CreateEventA(NULL, FALSE, FALSE, NULL);
- t_record->work_thread = (HANDLE)_beginthreadex(NULL, 0, &agent_picture_show_thread, t_record, 0, NULL);
- return 0;
- }
- static int agent_picture_video_stop(picture_record_t* t_record)
- {
- if (t_record->evt) {
- SetEvent(t_record->evt);
- if (t_record->work_thread) {
- WaitForSingleObject(t_record->work_thread, INFINITE);
- CloseHandle(t_record->work_thread);
- t_record->work_thread = NULL;
- }
- CloseHandle(t_record->evt);
- t_record->evt = NULL;
- }
- if (t_record->record_frame){
- video_frame_delete(t_record->record_frame);
- t_record->record_frame = NULL;
- }
- if (t_record->show_frame){
- video_frame_delete(t_record->show_frame);
- t_record->show_frame = NULL;
- }
- return 0;
- }
- static int record_agent_picture_show_session_destory(video_session_t* session)
- {
- if (session->pic_record){
- agent_picture_video_stop(session->pic_record);
- }
- if (session->video_shm_q_env) {
- delete session->video_shm_q_env;
- }
- if (session->video_shm_q_opt) {
- delete session->video_shm_q_opt;
- }
- if (session->video_error){
- delete session->video_error->data;
- delete session->video_error;
- }
- if (session->personimage){
- cvReleaseImage(&session->personimage);
- }
- if (session->personmask){
- cvReleaseImage(&session->personmask);
- }
- return 0;
- }
- static void show_remote_agnet_picture(video_session_t *t_session)
- {
- char strPath[MAX_PATH]={0};
- char strImgPath[MAX_PATH]={0};
- int irecord_video_frame_width = REC_COMMON_VIDEO_SSM_AGENT_WIDTH;
- int irecord_video_frame_heigt = REC_COMMON_VIDEO_SSM_AGENT_HEIGHT;
- if (t_session->conf.eDeviceType == eStand2sType){
- irecord_video_frame_width = REC_COMMON_VIDEO_SNAPSHOT_PREVIEW_WIDTH;
- irecord_video_frame_heigt = REC_COMMON_VIDEO_SNAPSHOT_PREVIEW_HEIGHT;
- }
- GetCurrentRunPath(strPath);
- _snprintf(strImgPath, MAX_PATH, "%s\\bin\\agent.jpg", strPath);
- video_frame* remote_frame = video_frame_new(irecord_video_frame_width, irecord_video_frame_heigt, VIDEO_FORMAT_RGB24);
- video_frame_fill_black(remote_frame);
- if (_access(strImgPath,0)!=-1)
- {
- IplImage*img = cvLoadImage(strImgPath,1);
- videoq_frame* vframe = new videoq_frame;
- if (img != NULL)
- {
- vframe->format = VIDEOQ_FORMAT_RGB24;
- vframe->framesize = img->imageSize;
- vframe->width = img->width;
- vframe->height = img->height;
- vframe->data = new unsigned char[img->imageSize];
- memcpy(vframe->data,img->imageData,img->imageSize);
- cvReleaseImage(&img);
- }
- SwsContext*sws = sws_getContext(vframe->width, vframe->height,PIX_FMT_BGR24,
- irecord_video_frame_width,
- irecord_video_frame_heigt,
- PIX_FMT_BGR24,
- SWS_POINT, NULL, NULL, NULL);
- uint8_t *src_data[4] = {(unsigned char*)vframe->data+(vframe->height-1)*vframe->width*3,NULL,NULL,NULL};
- int src_linesize[4] = {-vframe->width*3,0,0,0};
- unsigned char *dst[4] = {remote_frame->data[0],NULL,NULL,NULL};
- int dst_linesize[4] = {remote_frame->linesize[0],0,0,0};
- sws_scale(sws, src_data, src_linesize, 0, vframe->height, dst, dst_linesize);
- sws_freeContext(sws);
- if (vframe){
- delete vframe->data;
- delete vframe;
- }
- }
- if (NULL != t_session->video_shm_q_remote)
- {
- int rc = video_shm_enqueue(t_session->video_shm_q_remote, remote_frame, VIDEOQUEUE_FLAG_VERTICAL_FLIP, 1);
- if (rc != Error_Succeed)
- {
- DbgWithLink(LOG_LEVEL_INFO, LOG_TYPE_SYSTEM)("insert agent picture to remote video queue failed.");
- }
- }
- video_frame * showframe = NULL;
- if (-1 == translate_image_resolution(&showframe,t_session->conf.remote_video_width,t_session->conf.remote_video_height,remote_frame))
- {
- showframe = video_frame_new(t_session->conf.remote_video_width,t_session->conf.remote_video_height, VIDEO_FORMAT_RGB24);
- video_frame_fill_black(showframe);
- video_frame_copy(showframe, remote_frame);
- }
-
- t_session->pic_record = new picture_record_t();
- t_session->pic_record->record_frame = remote_frame;
- t_session->pic_record->show_frame = showframe;
- t_session->pic_record->session = t_session;
- agent_picture_video_start(t_session->pic_record);
- }
- static int start_video_rtpsession(video_session_t* session)
- {
- int rc = -1;
- videortp_config_t config = { 0 };
- config.fps_den = REC_COMMON_VIDEO_FPS_DEN;
- config.fps_num = REC_COMMON_VIDEO_FPS_NUM;
- config.capture_height = -1; // not use
- config.capture_width = -1; // not use
- config.dir = 3;
- config.tx_width = REC_COMMON_VIDEO_RTP_WIDTH;
- config.tx_height = REC_COMMON_VIDEO_RTP_HEIGHT;
- config.rx_width = session->conf.remote_video_width;
- config.rx_height = session->conf.remote_video_height;
- config.local_ip = session->conf.local_rtp_ip;
- config.local_pt = session->conf.local_pt;
- config.remote_pt = session->conf.local_pt;
- config.local_rtp_port = session->conf.local_rtp_port;
- config.mtu = session->conf.mtu;
- config.quant = session->conf.video_quant;
- config.remote_ip = session->conf.remote_rtp_ip;
- config.remote_rtp_port = session->conf.remote_rtp_port;
- config.user_data = session;
- config.bit_rate = session->conf.bit_rate;
- config.on_rx_frame = &on_rx_frame;
- config.dbg = &__dbg;
- config.logevent = &__logevent;
- videortp_create(&config, &session->rtp);
- if (eSDL == session->conf.eType){
- session->premote_render->StartVideoRender();
- }
-
- rc = videortp_start(session->rtp);
- if (rc != 0)
- {
- DbgWithLink(LOG_LEVEL_INFO, LOG_TYPE_SYSTEM)("start video rtp failed!");
- videortp_destroy(session->rtp);
- session->rtp = NULL;
- }
- return rc;
- }
- static int start_local_video_clock(video_session_t* session)
- {
- int rc = -1;
- rc = videoclock_create(REC_COMMON_VIDEO_FPS_NUM, REC_COMMON_VIDEO_FPS_DEN,
- REC_COMMON_VIDEO_RTP_WIDTH, REC_COMMON_VIDEO_RTP_HEIGHT, VIDEO_FORMAT_RGB24,
- &local_put_frame, session, &local_get_frame, session, &session->local_clock, session->conf.ref_Up_Fps, &__dbg);
- if (0 == rc) {
- rc = videoclock_start(session->local_clock);
- if (rc != 0) {
- DbgWithLink(LOG_LEVEL_INFO, LOG_TYPE_SYSTEM)("start video clock failed!");
- videoclock_destroy(session->local_clock);
- session->local_clock = NULL;
- }
- }
- else {
- DbgWithLink(LOG_LEVEL_INFO, LOG_TYPE_SYSTEM)("create video clock failed!");
- }
- return rc;
- }
- static int start_video(video_session_t *session)
- {
- int rc = -1;
- if (session->video_shm_q_env)
- {
- session->local_encode_sws_ctx_env = sws_getContext(
- REC_COMMON_VIDEO_RTP_ENV_WIDTH, REC_COMMON_VIDEO_RTP_ENV_HEIGHT, PIX_FMT_BGR24,
- REC_COMMON_VIDEO_RTP_ENV_WIDTH, REC_COMMON_VIDEO_RTP_ENV_HEIGHT, PIX_FMT_YUV420P,
- SWS_POINT, NULL, NULL, NULL);
- if (!session->local_encode_sws_ctx_env) {
- DbgWithLink(LOG_LEVEL_INFO, LOG_TYPE_SYSTEM)("get session->local_encode_sws_ctx_env failed.");
- goto on_error;
- }
- }
- else{
- DbgWithLink(LOG_LEVEL_INFO, LOG_TYPE_SYSTEM)("session->video_shm_q_env is NULL.");
- }
- if (session->video_shm_q_opt)
- {
- session->local_encode_sws_ctx_opt = sws_getContext(
- REC_COMMON_VIDEO_RTP_WIDTH, REC_COMMON_VIDEO_RTP_HEIGHT, PIX_FMT_BGR24,
- REC_COMMON_VIDEO_RTP_WIDTH, REC_COMMON_VIDEO_RTP_HEIGHT, PIX_FMT_YUV420P,
- SWS_POINT, NULL, NULL, NULL);
- if (!session->local_encode_sws_ctx_opt) {
- DbgWithLink(LOG_LEVEL_INFO, LOG_TYPE_SYSTEM)("get session->local_encode_sws_ctx_opt failed.");
- goto on_error;
- }
- }
- else{
- DbgWithLink(LOG_LEVEL_INFO, LOG_TYPE_SYSTEM)("session->video_shm_q_opt is NULL.");
- }
- if (eGDI == session->conf.eType){
- if (DOUBLERECORD_CALLTYPE != session->conf.nCallType){
- if (session->remote_hwnd)
- {
- rc = videoplayer_create(session->remote_hwnd,
- 0,
- 0,
- session->conf.remote_video_view_cx,
- session->conf.remote_video_view_cy,
- REC_COMMON_VIDEO_FPS_NUM,
- REC_COMMON_VIDEO_FPS_DEN,
- session->conf.remote_video_width,
- session->conf.remote_video_height,
- //*VIDEOPLAYER_FLAG_DOUBLESIZE|*/VIDEOPLAYER_FLAG_PUSH|VIDEOPLAYER_FLAG_CHECKTOP,
- session->conf.iremote_wind_flags,
- "remote",
- on_remoteWinstate,
- NULL,
- session,
- &session->remote_player);
- if (rc != 0) {
- DbgWithLink(LOG_LEVEL_INFO, LOG_TYPE_SYSTEM)("create remote video player failed!");
- goto on_error;
- }
- }
- else
- {
- DbgWithLink(LOG_LEVEL_INFO, LOG_TYPE_SYSTEM)("remote_hwnd == Null");
- }
- }
- else{
- if (NULL != pg_last_session){
- session->remote_player = pg_last_session->remote_player;
- rc = 0;
- }
- }
- bool bIsActiveInspect = false;
- if (session->conf.ref_Is_ActiveInspect != NULL){
- if (*session->conf.ref_Is_ActiveInspect == 1){
- bIsActiveInspect = true;
- }
- else{
- bIsActiveInspect = false;
- }
- }
- else{
- bIsActiveInspect = false;
- }
- if (DOUBLERECORD_CALLTYPE != session->conf.nCallType){
- int iwidth = REC_COMMON_VIDEO_PREVIEW_WIDTH;
- int iheight = REC_COMMON_VIDEO_PREVIEW_HEIGHT;
- if (session->conf.local_video_view_cx < session->conf.local_video_view_cy) {
- iwidth = REC_COMMON_VIDEO_PREVIEW_HEIGHT;
- iheight = REC_COMMON_VIDEO_PREVIEW_WIDTH;
- }
- rc = videoplayer_create(session->local_hwnd,
- 0,
- 0,
- session->conf.local_video_view_cx,
- session->conf.local_video_view_cy,
- REC_COMMON_VIDEO_FPS_NUM,
- REC_COMMON_VIDEO_FPS_DEN,
- bIsActiveInspect?REC_COMMON_VIDEO_SNAPSHOT_WIDTH: iwidth,
- bIsActiveInspect?REC_COMMON_VIDEO_SNAPSHOT_WIDTH: iheight,
- //*VIDEOPLAYER_FLAG_DOUBLESIZE|*/VIDEOPLAYER_FLAG_PULL|VIDEOPLAYER_FLAG_CHECKTOP,
- session->conf.ilocal_wind_flags,
- "local",
- on_pull, free_frame, session,
- &session->local_player);
- if (rc != 0) {
- DbgWithLink(LOG_LEVEL_INFO, LOG_TYPE_SYSTEM)("create local video player failed!");
- goto on_error;
- }
- }
- else{
- if (NULL != pg_last_session){
- session->local_player = pg_last_session->local_player;
- DbgWithLink(LOG_LEVEL_DEBUG, LOG_TYPE_SYSTEM)("double record call local player reuse.");
- }
- }
- if (session->remote_hwnd)
- {
- if (0 != session->conf.remote_rtp_port){
- if (0 != start_video_rtpsession(session)) {
- DbgWithLink(LOG_LEVEL_INFO, LOG_TYPE_SYSTEM)("start_video_rtpsession failed!");
- goto on_error;
- }
- if (DOUBLERECORD_CALLTYPE == session->conf.nCallType){
- if (NULL != pg_last_session){
- pg_last_session->rtp = session->rtp;
- }
- }
- if (0 != start_local_video_clock(session)) {
- DbgWithLink(LOG_LEVEL_INFO, LOG_TYPE_SYSTEM)("start_local_video_clock failed!");
- goto on_error;
- }
- }
- else{
- pg_last_session = session; //保存session信息
- show_remote_agnet_picture(session);
- }
- }
- }
- else{
- if (DOUBLERECORD_CALLTYPE == session->conf.nCallType) {
- if (NULL != pg_last_session) {
- session->premote_render = pg_last_session->premote_render;
- session->plocal_render = pg_last_session->plocal_render;
- }
- }
- if (session->premote_render)
- {
- if (0 != session->conf.remote_rtp_port) {
- if (0 != start_video_rtpsession(session)) {
- DbgWithLink(LOG_LEVEL_INFO, LOG_TYPE_SYSTEM)("start_video_rtpsession failed!");
- goto on_error;
- }
- if (DOUBLERECORD_CALLTYPE == session->conf.nCallType) {
- if (NULL != pg_last_session) {
- pg_last_session->rtp = session->rtp;
- }
- }
- if (0 != start_local_video_clock(session)) {
- DbgWithLink(LOG_LEVEL_INFO, LOG_TYPE_SYSTEM)("start_local_video_clock failed!");
- goto on_error;
- }
- }
- else {
- show_remote_agnet_picture(session);
- }
- }
- }
- on_error:
-
- return rc;
- }
- static void stop_video(video_session_t *session)
- {
- if (eGDI == session->conf.eType){
- if (session->local_clock && session->remote_hwnd){
- videoclock_stop(session->local_clock);
- videoclock_destroy(session->local_clock);
- session->local_clock = NULL;
- pg_remote_hwnd = NULL;
- pg_local_hwnd = NULL;
- }
- }
- else{
- if (session->local_clock){
- videoclock_stop(session->local_clock);
- videoclock_destroy(session->local_clock);
- session->local_clock = NULL;
- }
- }
- if (session->rtp){
- videortp_stop(session->rtp);
- videortp_destroy(session->rtp);
- session->rtp = NULL;
- }
- else {
- DbgWithLink(LOG_LEVEL_INFO, LOG_TYPE_SYSTEM)("session->rtp == null");
- }
- if (eGDI == session->conf.eType){
- if (session->local_player) {
- videoplayer_destroy(session->local_player);
- session->local_player = NULL;
- }
- if (session->remote_player && session->remote_hwnd){
- videoplayer_destroy(session->remote_player);
- session->remote_player = NULL;
- }
- }
- else{
- session->premote_render->StopVideoRender();
- if (session->plocal_render){
- delete session->plocal_render;
- session->plocal_render = NULL;
- }
- if (session->premote_render){
- delete session->premote_render;
- session->premote_render = NULL;
- }
- }
- if (session->local_encode_sws_ctx_env) {
- sws_freeContext(session->local_encode_sws_ctx_env);
- session->local_encode_sws_ctx_env = NULL;
- }
- if (session->local_encode_sws_ctx_opt) {
- sws_freeContext(session->local_encode_sws_ctx_opt);
- session->local_encode_sws_ctx_opt = NULL;
- }
- }
- static bool ReMoveOutOfScreenVideoWindow(HWND hWnd, RECT rect)
- {
- bool bret = false;
- int iScreenWidth = GetSystemMetrics(SM_CXSCREEN);
- int iScreenHight = GetSystemMetrics(SM_CYSCREEN);
- int iVideoWidth = rect.right - rect.left;
- int iVideoHight = rect.bottom - rect.top;
- if (rect.left < 0) {
- if (rect.bottom <= iScreenHight) {
- MoveWindow(hWnd, 0, rect.top, iVideoWidth, iVideoHight, TRUE);
- }
- else {
- MoveWindow(hWnd, 0, iScreenHight - iVideoHight, iVideoWidth, iVideoHight, TRUE);
- }
- bret = true;
- }
- if (rect.right > iScreenWidth) {
- if (rect.bottom <= iScreenHight) {
- MoveWindow(hWnd, iScreenWidth - iVideoWidth, rect.top, iVideoWidth, iVideoHight, TRUE);
- }
- else {
- MoveWindow(hWnd, iScreenWidth - iVideoWidth, iScreenHight - iVideoHight, iVideoWidth, iVideoHight, TRUE);
- }
- bret = true;
- }
- if (rect.bottom > iScreenHight) {
- if (rect.left >= 0 && rect.right <= iScreenWidth) {
- MoveWindow(hWnd, rect.left, iScreenHight - iVideoHight, iVideoWidth, iVideoHight, TRUE);
- bret = true;
- }
- }
- return bret;
- }
- static bool ReMoveCenterOtherVideoWindow(HWND hWnd, RECT rect, RECT otherect)
- {
- bool bret = false;
- int iVideoWidth = rect.right - rect.left;
- int iVideoHight = rect.bottom - rect.top;
- int iOtherVideoWidth = otherect.right - otherect.left;
- int iOtherVideoHight = otherect.bottom - otherect.top;
- if (iVideoWidth > iOtherVideoHight || iVideoHight > iOtherVideoHight) {
- return bret;
- }
- if (rect.left > otherect.left + iVideoWidth && rect.right < otherect.right) {
- if (rect.top > otherect.top && rect.bottom < otherect.bottom) {
- if (otherect.right - rect.right <= rect.left - otherect.left) {
- MoveWindow(hWnd, otherect.right - iVideoWidth, rect.top, iVideoWidth, iVideoHight, TRUE);
- }
- else {
- MoveWindow(hWnd, otherect.left, rect.top, iVideoWidth, iVideoHight, TRUE);
- }
- bret = true;
- }
- }
- if (rect.right < otherect.right - iVideoWidth && rect.left > otherect.left) {
- if (rect.top > otherect.top && rect.bottom < otherect.bottom) {
- if (otherect.right - rect.right <= rect.left - otherect.left) {
- MoveWindow(hWnd, otherect.right - iVideoWidth, rect.top, iVideoWidth, iVideoHight, TRUE);
- }
- else {
- MoveWindow(hWnd, otherect.left, rect.top, iVideoWidth, iVideoHight, TRUE);
- }
- bret = true;
- }
- }
- return bret;
- }
- static bool ReMoveVideoWindow(HWND hWnd, RECT rect, RECT otherect)
- {
- bool bret = false;
- bret = ReMoveOutOfScreenVideoWindow(hWnd, rect);
- bret = ReMoveCenterOtherVideoWindow(hWnd, rect, otherect);
- return bret;
- }
- static int HandleVideoMoveEvent(int iMessageType, HWND hWnd, video_session_t* pSession)
- {
- int iRet = -1;
- if (NULL == pSession || NULL == hWnd) {
- return iRet;
- }
- HWND hOtherWnd = NULL;
- //本地和远端标识 1为本地,2为远端
- int iVideoType = 2;
- if (hWnd == pSession->local_hwnd) {
- iVideoType = 1;
- hOtherWnd = pSession->remote_hwnd;
- }
- else {
- hOtherWnd = pSession->local_hwnd;
- }
- if (NULL == hOtherWnd) {
- return iRet;
- }
- bool bMoved = false;
- RECT rect;
- GetWindowRect(hWnd, &rect);
-
- RECT otherect;
- GetWindowRect(hOtherWnd, &otherect);
- bMoved = ReMoveVideoWindow(hWnd, rect, otherect);
- if (bMoved) {
- GetWindowRect(hWnd, &rect);
- }
- if (NULL != pSession->conf.video_echo_cb && NULL != pSession->conf.video_echo_cb->on_video_box_move) {
- pSession->conf.video_echo_cb->on_video_box_move(iMessageType, iVideoType, rect.left, rect.bottom, pSession->conf.video_echo_cb->user_data);
- iRet = 0;
- }
- return iRet;
- }
- static LRESULT WINAPI WndProc(HWND hWnd, UINT msg, WPARAM wParam, LPARAM lParam)
- {
- video_session_t* session = (video_session_t*)GetWindowLongPtrA(hWnd, GWLP_USERDATA);
- switch (msg) {
- case WM_DESTROY:
- if (session->local_hwnd == hWnd) {
- session->local_hwnd = 0;
- }
- else if (session->remote_hwnd == hWnd) {
- session->remote_hwnd = 0;
- }
- if (session->local_hwnd == 0 && session->remote_hwnd == 0) {
- PostQuitMessage(0);
- }
- return 0;
- case WM_NCHITTEST:
- if (((session->local_hwnd == hWnd)&&(0 != session->conf.local_move)) || ((session->remote_hwnd == hWnd)&&(0 != session->conf.remote_move))){
- return HTCAPTION;
- }
- else{
- break;
- }
- case WM_ACTIVATE:
- case WM_TOUCH:
- case WM_GESTURE:
- ReleaseCapture();
- return 0;
- #if 1
- case WM_WINDOWPOSCHANGED:
- {
- LPWINDOWPOS pPos = (LPWINDOWPOS)lParam;
- if (pPos->hwndInsertAfter != HWND_TOPMOST && pPos->hwndInsertAfter != HWND_TOP) {
- //BringWindowToTop(hWnd);
- SetWindowPos(hWnd, HWND_TOPMOST, 0, 0, 0, 0, SWP_NOMOVE | SWP_NOSIZE);
- }
- else {
- return DefWindowProc(hWnd, msg, wParam, lParam);
- }
- }
- return 0;
- //return DefWindowProc(hWnd, msg, wParam, lParam);
- #endif
- case WM_MBUTTONDOWN:
- case WM_MBUTTONUP:
- case WM_MBUTTONDBLCLK:
- case WM_LBUTTONDBLCLK:
- case WM_LBUTTONDOWN:
- case WM_LBUTTONUP:
- if (session) {
- if (session->local_hwnd) {
- //ReleaseCapture();
- }
- }
- return 0;
- case WM_CLOSE:
- stop_video(session);
- //SetEvent(session->ui_thread);
- DestroyWindow(session->local_hwnd);
- DestroyWindow(session->remote_hwnd);
- return 0;
- case WM_MOVE:
- break;
- case WM_ENTERSIZEMOVE:
- {
- HandleVideoMoveEvent(0, hWnd, session);
- }
- break;
- case WM_EXITSIZEMOVE:
- {
- HandleVideoMoveEvent(1, hWnd, session);
- }
- break;
- default:
- return DefWindowProc(hWnd, msg, wParam, lParam);
- }
- return 0;
- }
- static unsigned int __stdcall ui_proc(void *arg)
- {
- video_session_t *session = (video_session_t*)arg;
- WNDCLASSA wc = {0};
- ATOM a = 0;
- HWND hWnd = NULL;
- MSG msg;
- HINSTANCE hInst = ModuleBase::GetModuleBase()->GetInstance();
- bool breuse_local_wnd = false;
- bool breuse_remote_wnd = false;
- DWORD dLocal_style = WS_EX_TOOLWINDOW | WS_EX_TOPMOST | WS_EX_NOACTIVATE;
- DWORD dRemote_style = WS_EX_TOOLWINDOW | WS_EX_TOPMOST | WS_EX_NOACTIVATE;
- //双录两阶段视频窗口复用
- if (NULL != pg_local_hwnd){
- session->local_hwnd = pg_local_hwnd;
- //SetWindowLongPtrA(session->local_hwnd, GWLP_USERDATA, (LONG_PTR)session);
- breuse_local_wnd = true;
- }
- else{
- if (0 != session->conf.local_move){
- dLocal_style -= WS_EX_NOACTIVATE;
- }
- if (0 != session->conf.remote_move){
- dRemote_style -= WS_EX_NOACTIVATE;
- }
- CoInitialize(0);
- wc.cbClsExtra = 0;
- wc.cbWndExtra = 0;
- wc.hInstance = hInst;
- wc.hbrBackground = (HBRUSH)GetStockObject(BLACK_BRUSH);
- wc.hCursor = NULL;
- wc.hIcon = NULL;
- wc.lpfnWndProc = &WndProc;
- wc.lpszClassName = WNDCLS_NAME;
- wc.style = CS_HREDRAW | CS_OWNDC | CS_VREDRAW;
- a = RegisterClassA(&wc);
- if (a == 0)
- return 0;
- session->local_hwnd = CreateWindowExA(dLocal_style,
- WNDCLS_NAME, NULL, WS_POPUP|WS_VISIBLE,
- session->conf.local_video_view_x, session->conf.local_video_view_y, session->conf.local_video_view_cx, session->conf.local_video_view_cy,
- NULL, NULL, hInst, NULL);
- if (session->local_hwnd) {
- SetWindowLongPtrA(session->local_hwnd, GWLP_USERDATA, (LONG_PTR)session);
- if (0 == session->conf.local_move){
- SetWindowPos(session->local_hwnd, HWND_TOP, 0, 0, 0, 0, SWP_NOSIZE|SWP_NOMOVE);
- }
- pg_local_hwnd = session->local_hwnd;
- //LogWarn(Severity_Low, Error_Debug, EVENT_MOD_SIP_LOCAL_WINDOW_CREATE_SUCCESS, "create local window success and restore local video hwnd.");
- }
- else{
- char strinfo[MAX_PATH] = {0};
- _snprintf(strinfo, MAX_PATH, "%s%d", "create local window failed and last error is ", GetLastError());
- LogWarn(Severity_Middle, Error_Debug, EVENT_MOD_SIP_LOCAL_WINDOW_CREATE_FAILED, strinfo);
- //return -1;
- }
- }
- if(session->conf.remote_video_view_x||session->conf.remote_video_view_y||session->conf.remote_video_view_cx||session->conf.remote_video_view_cy)
- {
- if (NULL != pg_remote_hwnd){
- session->remote_hwnd = pg_remote_hwnd;
- breuse_remote_wnd = true;
- if (NULL != pg_last_session){
- record_agent_picture_show_session_destory(pg_last_session);
- }
- }
- else{
- session->remote_hwnd = CreateWindowExA(dRemote_style,
- WNDCLS_NAME, NULL, WS_POPUP|WS_VISIBLE,
- session->conf.remote_video_view_x, session->conf.remote_video_view_y, session->conf.remote_video_view_cx, session->conf.remote_video_view_cy,
- NULL, NULL, hInst, NULL);
- if (session->remote_hwnd) {
- SetWindowLongPtrA(session->remote_hwnd, GWLP_USERDATA, (LONG_PTR)session);
- if (0 == session->conf.remote_move){
- SetWindowPos(session->remote_hwnd, HWND_TOP, 0, 0, 0, 0, SWP_NOSIZE|SWP_NOMOVE);
- }
- pg_remote_hwnd = session->remote_hwnd;
- //LogWarn(Severity_Low, Error_Debug, EVENT_MOD_SIP_REMOTE_WINDOW_CREATE_SUCCESS, "create remote window success and restore remote video hwnd.");
- }
- else{
- char strinfo[MAX_PATH] = {0};
- _snprintf(strinfo, MAX_PATH, "%s%d", "create remote window failed and last error is ", GetLastError());
- LogWarn(Severity_Middle, Error_Debug, EVENT_MOD_SIP_REMOTE_WINDOW_CREATE_FAILED, strinfo);
- //return -1;
- }
- }
- }
- else
- {
- session->remote_hwnd = NULL;
- }
- if (session->local_hwnd/* && session->remote_hwnd*/)
- {
- int rc = 0;
- ShowCursor(FALSE);
- SetEvent(session->ui_event);
- rc = start_video(session);
- if (rc != 0) {
- LogWarn(Severity_Middle, Error_Debug, ERROR_MOD_SIP_START_VIDEO_FAILED, "start video failed!");
- }
- if (!breuse_local_wnd && !breuse_remote_wnd)
- {
- while (GetMessageA(&msg, NULL, NULL, NULL))
- {
- if (msg.message == WM_CLOSE) {
- }
- TranslateMessage(&msg);
- DispatchMessageA(&msg);
- }
- SetEvent(session->ui_event);
- }
- }
- if (a)
- UnregisterClassA(WNDCLS_NAME, hInst);
- CoUninitialize();
- return 0;
- }
- static void __video_render_log(render_loglevel elevel, void* user_data, const char* fmt, va_list arg)
- {
- int n = _vsnprintf(NULL, 0, fmt, arg);
- if (n >= MAX_LOG_LEN) {
- char* buf = (char*)malloc((size_t)(n + 1));
- _vsnprintf(buf, n + 1, fmt, arg);
- DbgWithLink((LOG_LEVEL_E)elevel, LOG_TYPE_SYSTEM)("%s", buf);
- free(buf);
- }
- else {
- char strlog[MAX_LOG_LEN] = { 0 };
- _vsnprintf(strlog, MAX_LOG_LEN, fmt, arg);
- DbgWithLink(LOG_LEVEL_DEBUG, LOG_TYPE_SYSTEM)("%s", strlog);
- }
- }
- //void* videorender_func(void* arg)
- static unsigned int __stdcall videorender_func(void* arg)
- {
- video_session_t* session = (video_session_t*)arg;
- videorender_callback_t t_callback = { 0 };
- t_callback.debug = &__video_render_log;
- //双录两阶段视频窗口复用
- if (NULL != pg_local_render){
- session->plocal_render = (IVideoRender*)pg_local_render;
- }
- else{
- session->plocal_render = CreateVideoRenderObj(&t_callback);
- if (NULL != session->plocal_render){
- videorender_param_t tparam = { 0 };
- tparam.icx = session->conf.local_video_view_x;
- tparam.icy = session->conf.local_video_view_y;
- tparam.uwidth = session->conf.local_video_view_cx;
- tparam.uheight = session->conf.local_video_view_cy;
- tparam.bmoveable = (bool)session->conf.local_move;
- //tparam.uvideowidth = REC_COMMON_VIDEO_PREVIEW_WIDTH;
- //tparam.uvideoheight = REC_COMMON_VIDEO_PREVIEW_HEIGHT;
- tparam.ivideoformat = VIDEO_FORMAT_RGB24;
- if (0 == session->plocal_render->VideoRenderSetParam(&tparam)){
- session->plocal_render->HideVideoWindow();
- }
- else {
- return 0;
- }
- pg_local_render = session->plocal_render;
- }
- }
- if (session->conf.remote_video_view_x || session->conf.remote_video_view_y || session->conf.remote_video_view_cx || session->conf.remote_video_view_cy){
- if (NULL != pg_local_render){
- session->premote_render = (IVideoRender*)pg_remote_render;
- }
- else{
- session->premote_render = CreateVideoRenderObj(&t_callback);
- if (session->premote_render){
- videorender_param_t tparam_remote = { 0 };
- tparam_remote.icx = session->conf.remote_video_view_x;
- tparam_remote.icy = session->conf.remote_video_view_y;
- tparam_remote.uwidth = session->conf.remote_video_view_cx;
- tparam_remote.uheight = session->conf.remote_video_view_cy;
- tparam_remote.bmoveable = (bool)session->conf.remote_move;
- //tparam_remote.uvideowidth = REC_COMMON_VIDEO_DSM_AGENT_WIDTH;
- //tparam_remote.uvideoheight = REC_COMMON_VIDEO_DSM_AGENT_HEIGHT;
- tparam_remote.ivideoformat = VIDEO_FORMAT_RGB24;
- if (0 == session->premote_render->VideoRenderSetParam(&tparam_remote)) {
- //session->premote_render->ShowVideoWindow();
- }
- }
- else {
- DbgWithLink(LOG_LEVEL_DEBUG, LOG_TYPE_SYSTEM)("session remote video render is null.");
- }
- pg_remote_render = session->premote_render;
- }
- }
- if (session->plocal_render){
- start_video(session);
- //session->plocal_render->ShowVideoWindow();
- bool bshow_local = false;
- bool bset = true;
- //session->premote_render->ShowVideoWindow();
- if (DOUBLERECORD_CALLTYPE != session->conf.nCallType){
- session->plocal_render->StartVideoRender();
- }
-
- for (; ; ) {
- //struct timespec ts;
- //clock_gettime(CLOCK_REALTIME, &ts);
- //long unsec = ts.tv_nsec + (1000 * 1000 * 500);
- //ts.tv_sec += (unsec / 1000000000);
- //ts.tv_nsec = (unsec % 1000000000);
- //if (0 != sem_timedwait(&session->ui_stop_sem, &ts) && (ETIMEDOUT == errno)){
- DWORD dwRet = WaitForSingleObject(session->ui_event, 500);
- if (dwRet == WAIT_TIMEOUT){
- video_frame* local_video_frame = NULL;
- int iwindowstate = get_local_video_frame(session, &local_video_frame);
- if (iwindowstate != session->ilast_windstae){
- set_video_windows(session, iwindowstate);
- session->ilast_windstae = iwindowstate;
- }
-
- if (NULL != local_video_frame) {
- video_frame* localframe = NULL;
- if (0 == translate_image_resolution(&localframe, session->conf.local_video_view_cx, session->conf.local_video_view_cy, local_video_frame)) {
- session->plocal_render->RenderVideoFrame(localframe, RVC_FLIP_VERTICAL);
- video_frame_delete(localframe);
- localframe = NULL;
- }
- else {
- session->plocal_render->RenderVideoFrame(local_video_frame, RVC_FLIP_VERTICAL);
- }
- bshow_local = true;
- video_frame_delete(local_video_frame);
- local_video_frame = NULL;
- }
- }
- else {
- session->plocal_render->HideVideoWindow();
- break;
- }
- if (bset){
- if (bshow_local && session->bshow_remote) {
- session->plocal_render->ShowVideoWindow();
- session->premote_render->ShowVideoWindow();
- bset = false;
- }
- }
- }
- session->plocal_render->StopVideoRender();
- }
- return 0;
- }
- static int start_ui(video_session_t *session)
- {
- session->ui_event = CreateEventA(NULL, FALSE, FALSE, NULL);
- if (!session->ui_event) {
- DbgWithLink(LOG_LEVEL_INFO, LOG_TYPE_SYSTEM)("phonemedia_start create ui event failed!");
- return Error_Resource;
- }
- if (eGDI == session->conf.eType){
- session->ui_thread = (HANDLE)_beginthreadex(NULL, 0, &ui_proc, session, 0, NULL);
- }
- else{
- session->ui_thread = (HANDLE)_beginthreadex(NULL, 0, &videorender_func, session, 0, NULL);
- }
- if (!session->ui_thread) {
- DbgWithLink(LOG_LEVEL_INFO, LOG_TYPE_SYSTEM)("phonemedia_start create ui thread failed!");
- CloseHandle(session->ui_event);
- session->ui_event = NULL;
- return Error_Resource;
- }
- {
- HANDLE hs[] = {session->ui_event, session->ui_thread};
- DWORD dwRet = WaitForMultipleObjects(array_size(hs), hs, FALSE, INFINITE);
- if (dwRet == WAIT_OBJECT_0) { //
-
- } else if (dwRet == WAIT_OBJECT_0 + 1) { // thread exit
- CloseHandle(session->ui_thread);
- session->ui_thread = NULL;
- CloseHandle(session->ui_event);
- session->ui_event = NULL;
- return Error_Resource;
- }
- }
- return 0;
- }
- static void stop_ui(video_session_t *session)
- {
- if (eGDI == session->conf.eType){
- if (DOUBLERECORD_CALLTYPE == session->conf.nCallType) {
- if (NULL != pg_last_session) {
- pg_last_session->rtp = session->rtp;
- pg_last_session->local_clock = session->local_clock;
- CloseHandle(session->ui_thread);
- session->ui_thread = NULL;
- CloseHandle(session->ui_event);
- session->ui_event = NULL;
- session = pg_last_session;
- }
- }
- if (NULL != session->pic_record) {
- if (NULL != session->pic_record->work_thread) {
- SetEvent(session->pic_record->evt);
- CloseHandle(session->pic_record->work_thread);
- session->pic_record->work_thread = NULL;
- CloseHandle(session->pic_record->evt);
- session->pic_record->evt = NULL;
- }
- }
- if (session->local_hwnd) {
- BOOL bRet = PostMessageA(session->local_hwnd, WM_CLOSE, 0, 0);
- DWORD dCode = WaitForSingleObject(session->ui_thread, INFINITE);
- CloseHandle(session->ui_thread);
- session->ui_thread = NULL;
- CloseHandle(session->ui_event);
- session->ui_event = NULL;
- }
- pg_last_session = NULL;
- pg_local_hwnd = NULL;
- pg_remote_hwnd = NULL;
- }
- else{
- if (DOUBLERECORD_CALLTYPE == session->conf.nCallType) {
- if (NULL != pg_last_session) {
- pg_last_session->rtp = session->rtp;
- pg_last_session->local_clock = session->local_clock;
- CloseHandle(session->ui_thread);
- session->ui_thread = NULL;
- CloseHandle(session->ui_event);
- session->ui_event = NULL;
- session = pg_last_session;
- }
- }
- if (NULL != session->pic_record) {
- if (NULL != session->pic_record->work_thread) {
- SetEvent(session->pic_record->evt);
- CloseHandle(session->pic_record->work_thread);
- session->pic_record->work_thread = NULL;
- CloseHandle(session->pic_record->evt);
- session->pic_record->evt = NULL;
- }
- }
- SetEvent(session->ui_event);
- DWORD dCode = WaitForSingleObject(session->ui_thread, INFINITE);
- CloseHandle(session->ui_thread);
- session->ui_thread = NULL;
- CloseHandle(session->ui_event);
- session->ui_event = NULL;
- pg_last_session = NULL;
- stop_video(session);
- }
- }
- int local_video_session_create(const video_session_conf_t *conf, video_session_t **p_session, const bool bremote)
- {
- video_session_t *session = ZALLOC_T(video_session_t);
- if (session)
- {
- memcpy(&session->conf, conf, sizeof(video_session_conf_t));
- if (conf->local_video_view_cx >= conf->local_video_view_cy) {
- session->video_shm_q_preview = new Clibvideoqueue(REC_COMMON_VIDEO_ENV_SHM_PREVIEW_QUEUE);
- }
- else {
- session->video_shm_q_preview = new Clibvideoqueue(REC_COMMON_VIDEO_OPT_SHM_PREVIEW_QUEUE);
- }
-
-
- if (bremote){
- session->video_shm_q_remote = new Clibvideoqueue(REC_COMMON_VIDEO_REMOTE_SHM_RTP_QUEUE);
- }
-
- if (conf->ref_Is_ActiveInspect != NULL)
- {
- if (*conf->ref_Is_ActiveInspect == 1)
- {
- session->video_error = NULL;
- session->video_shm_q_env = new Clibvideoqueue(REC_COMMON_VIDEO_ENV_SHM_SNAPSHOT_QUEUE);
- if (conf->camera_count == 2)
- {
- session->video_shm_q_opt = new Clibvideoqueue(REC_COMMON_VIDEO_OPT_SHM_SNAPSHOT_QUEUE);
- }
- }
- }
- session->local_clock = NULL;
- *p_session = session;
- }
- return 0;
- }
- int video_session_create(const video_session_conf_t *conf, video_session_t **p_session)
- {
- video_session_t *session = ZALLOC_T(video_session_t);
- if (session)
- {
- memcpy(&session->conf, conf, sizeof(video_session_conf_t));
- session->video_shm_q_env = new Clibvideoqueue(REC_COMMON_VIDEO_ENV_SHM_RTP_QUEUE);
- if (DOUBLERECORD_CALLTYPE != conf->nCallType){
- session->video_shm_q_remote = new Clibvideoqueue(REC_COMMON_VIDEO_REMOTE_SHM_RTP_QUEUE);
- session->video_shm_q_preview = new Clibvideoqueue(REC_COMMON_VIDEO_ENV_SHM_PREVIEW_QUEUE);
- }
- else{
- if (NULL != pg_last_session){
- session->video_shm_q_remote = (pg_last_session)->video_shm_q_remote;
- session->video_shm_q_preview = (pg_last_session)->video_shm_q_preview;
- }
- }
- char strPath[MAX_PATH]={0};
- char strImgPath[MAX_PATH]={0};
- GetCurrentRunPath(strPath);
- _snprintf(strImgPath, MAX_PATH,"%s\\bin\\error.jpg",strPath);
- if (_access(strImgPath,0)!=-1)
- {
- IplImage*img = cvLoadImage(strImgPath,1);
- if (img != NULL)
- {
- session->video_error = new videoq_frame;
- session->video_error->format = VIDEOQ_FORMAT_RGB24;
- session->video_error->framesize = 320*180*3;
- session->video_error->height = 180;
- session->video_error->width = 320;
- session->video_error->data = new unsigned char[320*180*3];
- memcpy(session->video_error->data,img->imageData,320*180*3);
- cvReleaseImage(&img);
- }
- }
- else
- {
- DbgWithLink(LOG_LEVEL_INFO, LOG_TYPE_SYSTEM)("Load error img Fail");
- session->video_error = NULL;
- }
- //加载人形背景框
- char strPersonPath[MAX_PATH] = {0};
- _snprintf(strPersonPath, MAX_PATH,"%s\\bin\\rxk.jpg",strPath);
- if (_access(strPersonPath,0)!=-1)
- {
- if (session->personimage == NULL)
- {
- session->personimage = cvLoadImage(strPersonPath);
- }
- if (session->personmask == NULL )
- {
- session->personmask = cvLoadImage(strPersonPath,0);
- }
- }
- else
- {
- DbgWithLink(LOG_LEVEL_INFO, LOG_TYPE_SYSTEM)("Load person img Fail");
- session->personimage = NULL;
- session->personmask = NULL;
- }
-
- #if 0
- video_frame frame;
- video_frame_alloc(320, 180, VIDEO_FORMAT_RGB24, &frame);
- video_frame_fill_black(&frame);
- videoq_frame frm;
- frm.data = frame.data[0];
- session->video_shm_q_env->GetVideo(&frm, 0);
- video_frame_save_bmpfile("d:\\a.bmp", &frame);
- #endif
- if (conf->camera_count == 2) {
- session->video_shm_q_opt = new Clibvideoqueue(REC_COMMON_VIDEO_OPT_SHM_RTP_QUEUE);
- }
- *p_session = session;
- }
- return 0;
- }
- int video_session_start(video_session_t *session)
- {
- int rc = start_ui(session);
- return rc;
- }
- void video_session_stop(video_session_t *session)
- {
- stop_ui(session);
- }
- void double_record_broadcast_video_session_stop()
- {
- if (NULL != pg_last_session)
- {
- if (NULL != pg_last_session->pic_record)
- {
- if (NULL != pg_last_session->pic_record->work_thread)
- {
- SetEvent(pg_last_session->pic_record->evt);
- CloseHandle(pg_last_session->pic_record->work_thread);
- pg_last_session->pic_record->work_thread = NULL;
- CloseHandle(pg_last_session->pic_record->evt);
- pg_last_session->pic_record->evt = NULL;
- }
- }
- if (NULL != pg_last_session)
- {
- if (eGDI == pg_last_session->conf.eType) {
- if (NULL != pg_last_session->local_hwnd){
- BOOL bRet = PostMessageA(pg_last_session->local_hwnd, WM_CLOSE, 0, 0);
- }
- }
- else{
- if (NULL != pg_last_session->plocal_render){
- pg_last_session->plocal_render->StopVideoRender();
- }
- }
- DWORD dCode = WaitForSingleObject(pg_last_session->ui_thread, INFINITE);
- CloseHandle(pg_last_session->ui_thread);
- pg_last_session->ui_thread = NULL;
- CloseHandle(pg_last_session->ui_event);
- pg_last_session->ui_event = NULL;
- if (eGDI == pg_last_session->conf.eType) {
- pg_local_hwnd = NULL;
- pg_remote_hwnd = NULL;
- }
- else{
- pg_local_render = NULL;
- pg_remote_render = NULL;
- }
- pg_last_session = NULL;
- }
- }
- }
- void video_session_destroy(video_session_t *session)
- {
- if (NULL != session) {
- if (NULL != session->pic_record) {
- if (NULL != session->pic_record->work_thread) {
- SetEvent(session->pic_record->evt);
- CloseHandle(session->pic_record->work_thread);
- session->pic_record->work_thread = NULL;
- CloseHandle(session->pic_record->evt);
- session->pic_record->evt = NULL;
- }
- }
- if (session->video_shm_q_env) {
- delete session->video_shm_q_env;
- session->video_shm_q_env = NULL;
- }
- if (session->video_shm_q_opt) {
- delete session->video_shm_q_opt;
- session->video_shm_q_opt = NULL;
- }
- if (session->video_shm_q_preview) {
- delete session->video_shm_q_preview;
- session->video_shm_q_preview = NULL;
- }
- }
-
- if (session->video_error){
- delete session->video_error->data;
- delete session->video_error;
- }
- if (session->video_shm_q_remote) {
- delete session->video_shm_q_remote;
- session->video_shm_q_remote = NULL;
- }
- if (session->personimage){
- cvReleaseImage(&session->personimage);
- }
- if (session->personmask){
- cvReleaseImage(&session->personmask);
- }
- free(session);
- }
- void av_log_cb(void*ptr, int level, const char*fmt, va_list arg)
- {
- //int n = _vscprintf(fmt, arg);
- //if (n > MAX_LOG_LEN) {
- // char* buf = (char*)malloc((size_t)(n + 1));
- // _vsnprintf(buf, n + 1, fmt, arg);
- // DbgWithLink(LOG_LEVEL_INFO, LOG_TYPE_SYSTEM)("%s", buf);
- // free(buf);
- //}
- //else{
- // char strlog[MAX_LOG_LEN] = {0};
- // _vsnprintf(strlog, MAX_LOG_LEN, fmt, arg);
- // DbgWithLink(LOG_LEVEL_INFO, LOG_TYPE_SYSTEM)("%s", strlog);
- //}
- }
- int video_lib_init()
- {
- videoframework_init();
- av_log_set_callback(&av_log_cb);
- //av_log_set_level(AV_LOG_DEBUG);
- av_log_set_level(AV_LOG_QUIET);
-
- return 0;
- }
- void video_lib_deinit()
- {
- //CoUninitialize();
- videoframework_term();
- }
|