-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.c
2966 lines (2746 loc) · 78.4 KB
/
main.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <errno.h>
#include <unistd.h>
#include <stdarg.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <sys/types.h>
#include <dirent.h>
#include <time.h>
#include <error.h>
#include <netinet/in.h>
#include <sys/socket.h>
#include <sys/un.h>
#include <arpa/inet.h>
#include <linux/if.h>
#include <linux/sockios.h>
#include "cmd_type.h"
#include "interface.h"
#include "ipnc.h"
#if 1
#define ETH_NAME "eth0"
#define HARDWARE_ID "caoyonghuaipc1"
#define MANUFACTURE_ID "Bravilliant"
#define MODEL_ID "ipc1"
#define PTZ_PRESET_RETURN_INDEX 23
//int g_iFw;
Av_cfg_t g_stAv_0_file;
Av_cfg_t g_stAv_1_file;
//Img_cfg_t g_stImg_file;
//Osd_cfg_t g_arrstOsd_file[REGION_NUM];
//Infrared_cfg_t g_stInfrad_file;
//Net_cfg_t g_stNet_file;
//Port_cfg_t g_stPort_file;
//Upnp_cfg_t g_stUpnp_file;
//DDNS_cfg_t g_stDDNS_file;
Wf_search g_stWf_search_file;
//Wf_cfg_t g_stwfcfg_file;
//Ptz_cfg_t g_stPtzcfg_file;
Ptz_ctrl_t g_stPtzctl_file;
//Md_cfg_t g_stMdcfg_file;
//Snaptimer_cfg_t g_stSnaptimercfg_file;
//User_file_t g_stUsr_file;
//Ft_cfg_t g_stFtcfg_file;
//Smtp_cfg_t g_stSmtpcfg_file;
//VidMask_cfg_t g_stVidMaskcfg_file;
//Time_cfg_t g_stTimecfg_file;
//Sys_cfg_t g_stSyscfg_file;
User_file_t g_stUsr_file = { 3, { { "admin", "admin", em_Usergroup_admin }, {
"user", "user", em_Usergroup_user }, { "guest", "guest",
em_Usergroup_guest } } };
int g_iFw = 50;
Img_cfg_t g_stImg_file = { 50, 50, 50, 50, 0, 50, 0, { 10, 30 },
{ 128, 128, 128 } };
Osd_cfg_t g_arrstOsd_file[REGION_NUM] = { { TIMER_REGION, 0, 10, 10, 100, 1,
"time region" }, { 1, 0, 1000, 10, 100, 1, "win1" }, { 2, 0, 1000, 30,
100, 1, "win2" } };
Infrared_cfg_t g_stInfrad_file = { 0 };
Net_cfg_t g_stNet_file = { 0, "192.168.1.21", "255.255.255.0", "192.168.1.1", 0,
"202.96.134.133", "202.96.134.133",
{ 0x00, 0x50, 0x80, 0x11, 0x22, 0x33 }, 0 };
Port_cfg_t g_stPort_file = { 8001, 554 };
Upnp_cfg_t g_stUpnp_file = { 0 };
Wf_cfg_t g_stwfcfg_file = { 0, "linksys", 2, "1234567890", 0, 0 };
DDNS_cfg_t g_stDDNS_file = { 0, 1, "simple", "12345", "simple.3322.org" };
Ptz_cfg_t g_stPtzcfg_file = { 0, 0x01, 9600, 8, 1, 0 };
Md_cfg_t g_stMdcfg_file = { { { 0, 1, 0, 10, 10, 10, 10, 0 }, { 0, 1, 1, 20, 20,
20, 20, 0 }, { 0, 1, 2, 30, 30, 30, 30, 0 }, { 0, 1, 3, 40, 40, 40, 40,
0 } },
0, 0,
0, 0, 0, 0,
0, 10,
{ 0, 0, 0, { 0, 0 }, { 0, 0 }, { { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
{ 0, 0 }, { 0, 0 }, { 0, 0 } } } };
Snaptimer_cfg_t g_stSnaptimercfg_file = { 0, 60, 1, };
Ft_cfg_t g_stFtcfg_file =
{ "192.168.1.2", 21, "aaronqiu", "123456", 1, "BR_pic" };
Smtp_cfg_t g_stSmtpcfg_file = { "smtp.brgq.com.cn", 25, 0, 1, "aaronqiu",
"123456", "[email protected]", "[email protected]", "pic", "snap pic" };
VidMask_cfg_t g_stVidMaskcfg_file = { 0, { { 0, 10, 10, 100, 100, 1 }, { 0, 100,
100, 100, 100, 1 }, { 0, 200, 200, 100, 100, 1 } } };
Sys_cfg_t g_stSyscfg_file = { 0, "0", "1.0.0.0", "2.0.0.0", "ipcam",
"2012-4-25 00:00:00", 0, 0, 0, 0 };
Time_cfg_t g_stTimecfg_file = { 8, //HK
0, 0, "192.168.1.2", 60, "2011-03-14 13:05:06", "2011-03-14 05:05:06" };
int deletepresetindex = 0;
void getDateTimeStr(char* info, const int len, const time_t dtValue) {
struct tm* today = localtime(&dtValue);
strftime(info, len, "%Y-%m-%d %H:%M:%S ", today);
}
void getCurrentDateTimeStr(char* info, const int len) {
getDateTimeStr(info, len, time(NULL));
}
void logIntoFile(FILE* file, char* level, const char* fmt, va_list argptr) {
char value[500] = { 0 };
char dt[30];
getCurrentDateTimeStr(dt, 30);
vsnprintf(value, 500, fmt, argptr);
fprintf(file, "%s %s: %s\n", dt, level, value);
}
void logInfo(const char* fmt, ...) {
va_list argptr;
va_start(argptr, fmt);
logIntoFile(stdout, "NORMAL", fmt, argptr);
va_end(argptr);
}
int getPCLocalIp(char* pIp) {
int socket_fd;
struct sockaddr_in *sin;
struct ifreq ifr;
struct ifconf conf;
int num;
int i;
socket_fd = socket(AF_INET, SOCK_DGRAM, 0);
if (socket_fd == -1) {
return -1;
}
strcpy(ifr.ifr_name, ETH_NAME);
if (ioctl(socket_fd, SIOCGIFADDR, &ifr) < 0) {
return -1;
} else {
sin = (struct sockaddr_in *) &(ifr.ifr_addr);
strcpy(pIp, inet_ntoa(sin->sin_addr));
}
return 0;
}
void init_update_avbs_t(update_avbs_t* tmp) {
tmp->bit_rate = 2;
tmp->enabled_roi = 1;
tmp->enc_type = 0;
tmp->frame_rate = 30;
tmp->height = 720;
tmp->init_quant = 20;
tmp->ip_interval = 10;
tmp->max_quant = tmp->mjpeg_quality = 20;
tmp->min_quant = 10;
tmp->rate_ctl_type = 1;
tmp->reaction_delay_max = 20;
tmp->roi_h = tmp->roi_w = 100;
tmp->roi_x = tmp->roi_y = 0;
tmp->stream_enable = 1;
tmp->target_rate_max = 10;
tmp->width = 1280;
}
void init_Av_cfg_t(Av_cfg_t* tmp) {
tmp->denoise = 1;
tmp->chn = 1;
tmp->de_interlace = 10;
tmp->input_system = 2;
init_update_avbs_t(&tmp->ubs[0]);
init_update_avbs_t(&tmp->ubs[1]);
}
void init() {
init_Av_cfg_t(&g_stAv_0_file);
init_Av_cfg_t(&g_stAv_1_file);
init_Wf_search(&g_stWf_search_file);
getPCLocalIp(g_stNet_file.ip);
}
char *ParseVars(char PostIn[], int *pParseIndex) {
int out;
int in;
char hexch;
char hexval[3];
int start;
char ch;
in = *pParseIndex;
hexval[2] = '\0';
if ((in == 0) && (PostIn[0] == '$'))
out = in = 1;
else if (in == 0)
out = 0;
else if (in == -1)
return NULL;
else
out = ++in;
start = in;
while (((ch = PostIn[in]) != '=') && (ch != '&') && (ch != '\0')
&& (ch != '#')) {
if (ch == '+')
PostIn[out++] = ' ';
else if (ch == '%') {
hexval[0] = PostIn[++in];
hexval[1] = PostIn[++in];
hexch = (char) strtol(hexval, NULL, 16);
PostIn[out++] = hexch;
} else
PostIn[out++] = ch;
in++;
}
if ((ch == '\0') || (ch == '#'))
in = -1;
PostIn[out++] = '\0';
*pParseIndex = in;
return (&PostIn[start]);
}
int processMsg(void *buf, int len, void *rbuf) {
int cmd_type = -1;
char *pKey;
int iKey;
int iValue;
float fValue;
char *pValue;
char *cmd_tmp;
char *pInput = buf;
int parseIndex = 0;
int i = 0;
char *pRet = rbuf;
int ret = 0;
int file_changed_flag = 0;
void *p_tmp;
p_tmp = (void*) &g_stAv_0_file;
int channel = -1;
int sub_channel = 0;
int video_chn_num = 2;
int audio_chn_num = 1;
int audio_chn_no = 0;
int audio_enable = 0;
int audio_enc_type = 0; // g711
int audio_rtspport = 2345;
int audio_bitrate = 64000;
int audio_samplesize = 16;
int audio_samplerate = 8000;
int video_encode_profile = 0;
int witch_file = 0;
int osd_region = -1;
int index = -1;
int index1 = -1;
int sharpness = 128;
int wbMode = 0;
int wbcrgain = 20;
int wbcbgain = 20;
int backlightcompMode = 0;
int backlightcompLevel = 20;
int wdrangeMode = 0;
int wdrangeLevel = 20;
int if_cfg = 0;
int osd_cfg = 0;
int ntpserver_cfg = 0;
int fd_socket = -1;
int presetIndex = 1;
int ptz_preset_capacity = 9;
if (buf == NULL || rbuf == NULL) {
return -1;
}
cmd_tmp = (char *) malloc(128 * sizeof(char));
if (cmd_tmp == NULL) {
return -2;
}
logInfo("receive cmd is %s\n", buf);
//fprintf(stdout, "enter process.\n");
do {
pKey = ParseVars(pInput, &parseIndex);
pValue = ParseVars(pInput, &parseIndex);
if (pKey == NULL || pValue == NULL) {
break;
}
iKey = atoi(pKey);
if (iKey < e_TYPE || iKey > e_END) {
continue;
}
switch (iKey) {
case e_TYPE:
cmd_type = atoi(pValue);
sprintf(cmd_tmp, "$%d=%d", e_TYPE, cmd_type);
strcpy(pRet, cmd_tmp);
logInfo("cmd type is %d", cmd_type);
break;
case e_Chn:
channel = atoi(pValue);
sprintf(cmd_tmp, "&%d=%d", e_Chn, channel);
strcat(pRet, cmd_tmp);
logInfo("channel is %d\n", channel);
break;
case e_Sub_Chn:
sub_channel = atoi(pValue);
sprintf(cmd_tmp, "&%d=%d", e_Sub_Chn, sub_channel);
strcat(pRet, cmd_tmp);
logInfo("sub channel is %d\n", sub_channel);
break;
case e_video_addr:
if (cmd_type == T_Set) {
logInfo("set e_video_addr %s\n", pValue);
} else if (cmd_type == T_Get) {
sprintf(cmd_tmp, "&%d=rtsp://%s:%d/day.264", e_video_addr,
g_stNet_file.ip, 8554);
strcat(pRet, cmd_tmp);
ret++;
logInfo("get e_video_addr rtsp://%s:%d\n", g_stNet_file.ip,
g_stPort_file.rtspport + channel * 2);
}
break;
case e_encode_profile:
if (cmd_type == T_Set) {
video_encode_profile = atoi(pValue);
logInfo("set e_encode_profile %d\n", video_encode_profile);
} else if (cmd_type == T_Get) {
sprintf(cmd_tmp, "&%d=%d", e_encode_profile,
video_encode_profile);
strcat(pRet, cmd_tmp);
ret++;
logInfo("get e_encode_profile %d\n", video_encode_profile);
}
break;
case e_video_chn_num:
if (cmd_type == T_Set) {
video_chn_num = atoi(pValue);
logInfo("set video channel counts %d\n", video_chn_num);
} else if (cmd_type == T_Get) {
sprintf(cmd_tmp, "&%d=%d", e_video_chn_num, video_chn_num);
strcat(pRet, cmd_tmp);
ret++;
logInfo("get video_chn_num %d\n", video_chn_num);
}
break;
case e_FW:
if (cmd_type == T_Set) {
iValue = atoi(pValue);
logInfo("set FW %d\n", iValue);
/*if(g_iFw!=iValue){
g_iFw = iValue;
init_isp_pw_frequency(iValue);
SET_FILE_CHANGED(file_changed_flag, e_ENC_FW_FILE);
}*/
} else if (cmd_type == T_Get) {
sprintf(cmd_tmp, "&%d=%d", e_FW, g_iFw);
strcat(pRet, cmd_tmp);
ret++;
logInfo("set FW %d\n", g_iFw);
}
break;
case e_denoise:
/*if(channel==MAIN_STREAM_CHN){
p_tmp = (void *)&g_stAv_0_file;
witch_file = e_ENC_0_FILE;
}else{
p_tmp = (void *)&g_stAv_1_file;
witch_file = e_ENC_1_FILE;
}*/
if (cmd_type == T_Set) {
iValue = atoi(pValue);
logInfo("set denoise %d\n", iValue);
/*if(((Av_cfg_t *)p_tmp)->denoise != iValue){
((Av_cfg_t *)p_tmp)->denoise = iValue;
//............
SET_FILE_CHANGED(file_changed_flag, witch_file);
}*/
} else if (cmd_type == T_Get) {
sprintf(cmd_tmp, "&%d=%d", e_denoise,
((Av_cfg_t *) p_tmp)->denoise);
strcat(pRet, cmd_tmp);
ret++;
logInfo("get denoise %d\n", ((Av_cfg_t *) p_tmp)->denoise);
}
break;
case e_input_system:
/*if(channel==MAIN_STREAM_CHN){
p_tmp = (void *)&g_stAv_0_file;
witch_file = e_ENC_0_FILE;
}else{
p_tmp = (void *)&g_stAv_1_file;
witch_file = e_ENC_1_FILE;
}*/
if (cmd_type == T_Set) {
iValue = atoi(pValue);
logInfo("set input_system %d\n", iValue);
/*if(((Av_cfg_t *)p_tmp)->input_system != iValue){
((Av_cfg_t *)p_tmp)->input_system = iValue;
//............
SET_FILE_CHANGED(file_changed_flag, witch_file);
}*/
} else if (cmd_type == T_Get) {
sprintf(cmd_tmp, "&%d=%d", e_input_system,
((Av_cfg_t *) p_tmp)->input_system);
strcat(pRet, cmd_tmp);
ret++;
logInfo("get input_system %d\n",
((Av_cfg_t *) p_tmp)->input_system);
}
break;
case e_de_interlace:
/*if(channel==MAIN_STREAM_CHN){
p_tmp = (void *)&g_stAv_0_file;
witch_file = e_ENC_0_FILE;
}else{
p_tmp = (void *)&g_stAv_1_file;
witch_file = e_ENC_1_FILE;
}*/
if (cmd_type == T_Set) {
iValue = atoi(pValue);
logInfo("set de_interlace %d\n", iValue);
/*if(((Av_cfg_t *)p_tmp)->de_interlace != iValue){
((Av_cfg_t *)p_tmp)->de_interlace = iValue;
//............
SET_FILE_CHANGED(file_changed_flag, witch_file);
}*/
} else if (cmd_type == T_Get) {
sprintf(cmd_tmp, "&%d=%d", e_de_interlace,
((Av_cfg_t *) p_tmp)->de_interlace);
strcat(pRet, cmd_tmp);
ret++;
logInfo("get de_interlace %d\n",
((Av_cfg_t *) p_tmp)->de_interlace);
}
break;
case e_Stream_enable:
/*if(channel==MAIN_STREAM_CHN){
p_tmp = (void *)&g_stAv_0_file;
witch_file = e_ENC_0_FILE;
}else{
p_tmp = (void *)&g_stAv_1_file;
witch_file = e_ENC_1_FILE;
}*/
if (cmd_type == T_Set) {
iValue = atoi(pValue);
logInfo("set Stream_enable %d\n", iValue);
/*if(((Av_cfg_t *)p_tmp)->ubs[sub_channel].stream_enable != iValue){
((Av_cfg_t *)p_tmp)->ubs[sub_channel].stream_enable = iValue;
//............
SET_FILE_CHANGED(file_changed_flag, witch_file);
}*/
} else if (cmd_type == T_Get) {
sprintf(cmd_tmp, "&%d=%d", e_Stream_enable,
((Av_cfg_t *) p_tmp)->ubs[sub_channel].stream_enable);
strcat(pRet, cmd_tmp);
ret++;
logInfo("get Stream_enable %d\n",
((Av_cfg_t *) p_tmp)->ubs[sub_channel].stream_enable);
}
break;
case e_enc_type:
/*if(channel==MAIN_STREAM_CHN){
p_tmp = (void *)&g_stAv_0_file;
witch_file = e_ENC_0_FILE;
}else{
p_tmp = (void *)&g_stAv_1_file;
witch_file = e_ENC_1_FILE;
}*/
if (cmd_type == T_Set) {
iValue = atoi(pValue);
logInfo("set enc_type %d\n", iValue);
/*if(((Av_cfg_t *)p_tmp)->ubs[sub_channel].enc_type != iValue){
((Av_cfg_t *)p_tmp)->ubs[sub_channel].enc_type = iValue;
//............
SET_FILE_CHANGED(file_changed_flag, witch_file);
}*/
} else if (cmd_type == T_Get) {
sprintf(cmd_tmp, "&%d=%d", e_enc_type,
((Av_cfg_t *) p_tmp)->ubs[sub_channel].enc_type);
strcat(pRet, cmd_tmp);
ret++;
logInfo("get enc_type %d\n",
((Av_cfg_t *) p_tmp)->ubs[sub_channel].enc_type);
}
break;
case e_frame_rate:
/*if(channel==MAIN_STREAM_CHN){
p_tmp = (void *)&g_stAv_0_file;
witch_file = e_ENC_0_FILE;
}else{
p_tmp = (void *)&g_stAv_1_file;
witch_file = e_ENC_1_FILE;
}*/
if (cmd_type == T_Set) {
iValue = atoi(pValue);
logInfo("set frame_rate %d\n", iValue);
/*if(((Av_cfg_t *)p_tmp)->ubs[sub_channel].frame_rate != iValue){
((Av_cfg_t *)p_tmp)->ubs[sub_channel].frame_rate = iValue;
//............
set_fps(((Av_cfg_t *)p_tmp)->ubs[sub_channel].frame_rate);
SET_FILE_CHANGED(file_changed_flag, witch_file);
}*/
} else if (cmd_type == T_Get) {
sprintf(cmd_tmp, "&%d=%d", e_frame_rate,
((Av_cfg_t *) p_tmp)->ubs[sub_channel].frame_rate);
strcat(pRet, cmd_tmp);
ret++;
logInfo("get frame_rate %d\n",
((Av_cfg_t *) p_tmp)->ubs[sub_channel].frame_rate);
}
break;
case e_bit_rate:
if (cmd_type == T_Set) {
iValue = atoi(pValue);
logInfo("set bit_rate %d\n", iValue);
} else if (cmd_type == T_Get) {
sprintf(cmd_tmp, "&%d=%d", e_bit_rate,
((Av_cfg_t *) p_tmp)->ubs[sub_channel].bit_rate);
strcat(pRet, cmd_tmp);
// logInfo("=======to get bit_rate:%d.\n", ((Av_cfg_t *)p_tmp)->ubs[sub_channel].bit_rate/1000);
ret++;
logInfo("get bit_rate %d\n",
((Av_cfg_t *) p_tmp)->ubs[sub_channel].bit_rate);
}
break;
case e_ip_interval:
/*if(channel==MAIN_STREAM_CHN){
p_tmp = (void *)&g_stAv_0_file;
witch_file = e_ENC_0_FILE;
}else{
p_tmp = (void *)&g_stAv_1_file;
witch_file = e_ENC_1_FILE;
}*/
if (cmd_type == T_Set) {
iValue = atoi(pValue);
logInfo("set e_ip_interval %d\n", iValue);
} else if (cmd_type == T_Get) {
sprintf(cmd_tmp, "&%d=%d", e_ip_interval,
((Av_cfg_t *) p_tmp)->ubs[sub_channel].ip_interval);
strcat(pRet, cmd_tmp);
ret++;
logInfo("get e_ip_interval %d\n",
((Av_cfg_t *) p_tmp)->ubs[sub_channel].ip_interval);
}
break;
case e_width:
/*if(channel==MAIN_STREAM_CHN){
p_tmp = (void *)&g_stAv_0_file;
witch_file = e_ENC_0_FILE;
}else{
p_tmp = (void *)&g_stAv_1_file;
witch_file = e_ENC_1_FILE;
}*/
if (cmd_type == T_Set) {
iValue = atoi(pValue);
logInfo("set e_width %d\n", iValue);
} else if (cmd_type == T_Get) {
sprintf(cmd_tmp, "&%d=%d", e_width,
((Av_cfg_t *) p_tmp)->ubs[sub_channel].width);
strcat(pRet, cmd_tmp);
ret++;
logInfo("get e_width %d\n",
((Av_cfg_t *) p_tmp)->ubs[sub_channel].width);
}
break;
case e_height:
/*if(channel==MAIN_STREAM_CHN){
p_tmp = (void *)&g_stAv_0_file;
witch_file = e_ENC_0_FILE;
}else{
p_tmp = (void *)&g_stAv_1_file;
witch_file = e_ENC_1_FILE;
}*/
if (cmd_type == T_Set) {
iValue = atoi(pValue);
logInfo("set e_height %d\n", iValue);
} else if (cmd_type == T_Get) {
sprintf(cmd_tmp, "&%d=%d", e_height,
((Av_cfg_t *) p_tmp)->ubs[sub_channel].height);
strcat(pRet, cmd_tmp);
ret++;
logInfo("get e_height %d\n",
((Av_cfg_t *) p_tmp)->ubs[sub_channel].height);
}
break;
case e_rate_ctl_type:
if (cmd_type == T_Set) {
iValue = atoi(pValue);
logInfo("set e_rate_ctl_type %d\n", iValue);
} else if (cmd_type == T_Get) {
sprintf(cmd_tmp, "&%d=%d", e_rate_ctl_type,
((Av_cfg_t *) p_tmp)->ubs[sub_channel].rate_ctl_type);
strcat(pRet, cmd_tmp);
ret++;
logInfo("get e_rate_ctl_type %d\n",
((Av_cfg_t *) p_tmp)->ubs[sub_channel].rate_ctl_type);
}
break;
case e_target_rate_max:
if (cmd_type == T_Set) {
iValue = atoi(pValue);
logInfo("set e_target_rate_max %d\n", iValue);
} else if (cmd_type == T_Get) {
sprintf(cmd_tmp, "&%d=%d", e_target_rate_max,
((Av_cfg_t *) p_tmp)->ubs[sub_channel].target_rate_max);
strcat(pRet, cmd_tmp);
ret++;
logInfo("get e_target_rate_max %d\n",
((Av_cfg_t *) p_tmp)->ubs[sub_channel].target_rate_max);
}
break;
case e_reaction_delay_max:
if (cmd_type == T_Set) {
iValue = atoi(pValue);
logInfo("set e_reaction_delay_max %d\n", iValue);
} else if (cmd_type == T_Get) {
sprintf(
cmd_tmp,
"&%d=%d",
e_reaction_delay_max,
((Av_cfg_t *) p_tmp)->ubs[sub_channel].reaction_delay_max);
strcat(pRet, cmd_tmp);
ret++;
printf(
"get e_reaction_delay_max %d\n",
((Av_cfg_t *) p_tmp)->ubs[sub_channel].reaction_delay_max);
}
break;
case e_init_quant:
if (cmd_type == T_Set) {
iValue = atoi(pValue);
logInfo("set e_init_quant %d\n", iValue);
} else if (cmd_type == T_Get) {
sprintf(cmd_tmp, "&%d=%d", e_init_quant,
((Av_cfg_t *) p_tmp)->ubs[sub_channel].init_quant);
strcat(pRet, cmd_tmp);
ret++;
logInfo("get e_init_quant %d\n",
((Av_cfg_t *) p_tmp)->ubs[sub_channel].init_quant);
}
break;
case e_max_quant:
if (cmd_type == T_Set) {
iValue = atoi(pValue);
logInfo("set e_max_quant %d\n", iValue);
} else if (cmd_type == T_Get) {
sprintf(cmd_tmp, "&%d=%d", e_max_quant,
((Av_cfg_t *) p_tmp)->ubs[sub_channel].max_quant);
strcat(pRet, cmd_tmp);
ret++;
logInfo("get e_max_quant %d\n",
((Av_cfg_t *) p_tmp)->ubs[sub_channel].max_quant);
}
break;
case e_min_quant:
if (cmd_type == T_Set) {
iValue = atoi(pValue);
logInfo("set e_min_quant %d\n", iValue);
} else if (cmd_type == T_Get) {
sprintf(cmd_tmp, "&%d=%d", e_min_quant,
((Av_cfg_t *) p_tmp)->ubs[sub_channel].min_quant);
strcat(pRet, cmd_tmp);
ret++;
logInfo("get e_min_quant %d\n",
((Av_cfg_t *) p_tmp)->ubs[sub_channel].min_quant);
}
break;
case e_mjpeg_quality:
if (cmd_type == T_Set) {
iValue = atoi(pValue);
logInfo("set e_mjpeg_quality %d\n", iValue);
} else if (cmd_type == T_Get) {
sprintf(cmd_tmp, "&%d=%d", e_mjpeg_quality,
((Av_cfg_t *) p_tmp)->ubs[sub_channel].mjpeg_quality);
strcat(pRet, cmd_tmp);
ret++;
logInfo("get e_mjpeg_quality %d\n",
((Av_cfg_t *) p_tmp)->ubs[sub_channel].mjpeg_quality);
}
break;
case e_enable_roi:
if (cmd_type == T_Set) {
iValue = atoi(pValue);
logInfo("set e_enable_roi %d\n", iValue);
} else if (cmd_type == T_Get) {
sprintf(cmd_tmp, "&%d=%d", e_enable_roi,
((Av_cfg_t *) p_tmp)->ubs[sub_channel].enabled_roi);
strcat(pRet, cmd_tmp);
ret++;
logInfo("get e_enable_roi %d\n",
((Av_cfg_t *) p_tmp)->ubs[sub_channel].enabled_roi);
}
break;
case e_roi_x:
if (cmd_type == T_Set) {
iValue = atoi(pValue);
logInfo("set e_roi_x %d\n", iValue);
} else if (cmd_type == T_Get) {
sprintf(cmd_tmp, "&%d=%d", e_roi_x,
((Av_cfg_t *) p_tmp)->ubs[sub_channel].roi_x);
strcat(pRet, cmd_tmp);
ret++;
logInfo("get e_roi_x %d\n",
((Av_cfg_t *) p_tmp)->ubs[sub_channel].roi_x);
}
break;
case e_roi_y:
if (cmd_type == T_Set) {
iValue = atoi(pValue);
logInfo("set e_roi_y %d\n", iValue);
} else if (cmd_type == T_Get) {
sprintf(cmd_tmp, "&%d=%d", e_roi_y,
((Av_cfg_t *) p_tmp)->ubs[sub_channel].roi_y);
strcat(pRet, cmd_tmp);
ret++;
logInfo("get e_roi_y %d\n",
((Av_cfg_t *) p_tmp)->ubs[sub_channel].roi_y);
}
break;
case e_roi_w:
if (cmd_type == T_Set) {
iValue = atoi(pValue);
logInfo("set e_roi_w %d\n", iValue);
} else if (cmd_type == T_Get) {
sprintf(cmd_tmp, "&%d=%d", e_roi_w,
((Av_cfg_t *) p_tmp)->ubs[sub_channel].roi_w);
strcat(pRet, cmd_tmp);
ret++;
logInfo("get e_roi_w %d\n",
((Av_cfg_t *) p_tmp)->ubs[sub_channel].roi_w);
}
break;
case e_roi_h:
if (cmd_type == T_Set) {
iValue = atoi(pValue);
logInfo("set e_roi_h %d\n", iValue);
} else if (cmd_type == T_Get) {
sprintf(cmd_tmp, "&%d=%d", e_roi_h,
((Av_cfg_t *) p_tmp)->ubs[sub_channel].roi_h);
strcat(pRet, cmd_tmp);
ret++;
logInfo("get e_roi_h %d\n",
((Av_cfg_t *) p_tmp)->ubs[sub_channel].roi_h);
}
break;
case e_brightness:
if (cmd_type == T_Set) {
iValue = atoi(pValue);
logInfo("set e_brightness %d\n", iValue);
} else if (cmd_type == T_Get) {
sprintf(cmd_tmp, "&%d=%d", e_brightness,
g_stImg_file.brightness);
strcat(pRet, cmd_tmp);
ret++;
logInfo("get e_brightness %d\n", g_stImg_file.brightness);
}
break;
case e_saturation:
if (cmd_type == T_Set) {
iValue = atoi(pValue);
logInfo("set e_saturation %d\n", iValue);
} else if (cmd_type == T_Get) {
sprintf(cmd_tmp, "&%d=%d", e_saturation,
g_stImg_file.saturation);
strcat(pRet, cmd_tmp);
ret++;
logInfo("get e_saturation %d\n", g_stImg_file.saturation);
}
break;
case e_contrast:
if (cmd_type == T_Set) {
iValue = atoi(pValue);
logInfo("set e_contrast %d\n", iValue);
} else if (cmd_type == T_Get) {
sprintf(cmd_tmp, "&%d=%d", e_contrast, g_stImg_file.contrast);
strcat(pRet, cmd_tmp);
ret++;
logInfo("get e_contrast %d\n", g_stImg_file.contrast);
}
break;
case e_sharpness:
if (cmd_type == T_Set) {
sharpness = atoi(pValue);
logInfo("set e_sharpness %d\n", sharpness);
} else if (cmd_type == T_Get) {
sprintf(cmd_tmp, "&%d=%d", e_sharpness, sharpness);
strcat(pRet, cmd_tmp);
ret++;
logInfo("get e_sharpness %d\n", sharpness);
}
break;
case e_hue:
if (cmd_type == T_Set) {
iValue = atoi(pValue);
logInfo("set e_hue %d\n", iValue);
} else if (cmd_type == T_Get) {
sprintf(cmd_tmp, "&%d=%d", e_hue, g_stImg_file.hue);
strcat(pRet, cmd_tmp);
ret++;
logInfo("get e_hue %d\n", g_stImg_file.hue);
}
break;
case e_scene:
if (cmd_type == T_Set) {
iValue = atoi(pValue);
logInfo("set e_scene %d\n", iValue);
} else if (cmd_type == T_Get) {
sprintf(cmd_tmp, "&%d=%d", e_scene, g_stImg_file.scene);
strcat(pRet, cmd_tmp);
ret++;
logInfo("get e_scene %d\n", g_stImg_file.scene);
}
break;
case e_flip: //Ϊֵ
if (cmd_type == T_Set) {
iValue = atoi(pValue);
logInfo("set e_flip %d\n", iValue);
} else if (cmd_type == T_Get) {
sprintf(cmd_tmp, "&%d=%d", e_flip, g_stImg_file.flip);
strcat(pRet, cmd_tmp);
ret++;
logInfo("get e_flip %d\n", g_stImg_file.flip);
}
break;
case e_mirror:
if (cmd_type == T_Set) {
iValue = atoi(pValue);
logInfo("set e_mirror %d\n", iValue);
} else if (cmd_type == T_Get) {
sprintf(cmd_tmp, "&%d=%d", e_mirror, g_stImg_file.mirror);
strcat(pRet, cmd_tmp);
ret++;
logInfo("get e_mirror %d\n", g_stImg_file.mirror);
}
break;
case e_imgctow:
if (cmd_type == T_Set) {
iValue = atoi(pValue);
logInfo("set e_imgctow %d\n", iValue);
} else if (cmd_type == T_Get) {
sprintf(cmd_tmp, "&%d=%d", e_imgctow, g_stImg_file.imgctow[0]);
strcat(pRet, cmd_tmp);
ret++;
logInfo("get e_imgctow %d\n", g_stImg_file.imgctow[0]);
}
break;
case e_imgwtoc:
if (cmd_type == T_Set) {
iValue = atoi(pValue);
logInfo("set e_imgwtoc %d\n", iValue);
} else if (cmd_type == T_Get) {
sprintf(cmd_tmp, "&%d=%d", e_imgwtoc, g_stImg_file.imgctow[1]);
strcat(pRet, cmd_tmp);
ret++;
logInfo("get e_imgwtoc %d\n", g_stImg_file.imgctow[1]);
}
break;
case e_wb_r:
if (cmd_type == T_Set) {
iValue = atoi(pValue);
logInfo("set e_wb_r %d\n", iValue);
} else if (cmd_type == T_Get) {
sprintf(cmd_tmp, "&%d=%d", e_wb_r, g_stImg_file.wb[0]);
strcat(pRet, cmd_tmp);
ret++;
logInfo("get e_wb_r %d\n", g_stImg_file.wb[0]);
}
break;
case e_wb_g:
if (cmd_type == T_Set) {
iValue = atoi(pValue);
logInfo("set e_wb_g %d\n", iValue);
} else if (cmd_type == T_Get) {
sprintf(cmd_tmp, "&%d=%d", e_wb_g, g_stImg_file.wb[1]);
strcat(pRet, cmd_tmp);
ret++;
logInfo("get e_wb_g %d\n", g_stImg_file.wb[1]);
}
break;
case e_wb_b:
if (cmd_type == T_Set) {
iValue = atoi(pValue);
logInfo("set e_wb_b %d\n", iValue);
} else if (cmd_type == T_Get) {
sprintf(cmd_tmp, "&%d=%d", e_wb_b, g_stImg_file.wb[2]);
strcat(pRet, cmd_tmp);
ret++;
logInfo("get e_wb_b %d\n", g_stImg_file.wb[2]);
}
break;
case e_wb_mode:
if (cmd_type == T_Set) {
wbMode = atoi(pValue);
logInfo("set e_wb_mode %d\n", wbMode);
} else if (cmd_type == T_Get) {
sprintf(cmd_tmp, "&%d=%d", e_wb_mode, wbMode);
strcat(pRet, cmd_tmp);
ret++;
logInfo("get e_wb_mode %d\n", wbMode);
}
break;
case e_wb_crgain:
if (cmd_type == T_Set) {
wbcrgain = atoi(pValue);
logInfo("set e_wb_crgain %d\n", wbcrgain);
} else if (cmd_type == T_Get) {
sprintf(cmd_tmp, "&%d=%d", e_wb_crgain, wbcrgain);
strcat(pRet, cmd_tmp);
ret++;
logInfo("get e_wb_crgain %d\n", wbcrgain);
}
break;
case e_wb_cbgain:
if (cmd_type == T_Set) {
wbcbgain = atoi(pValue);
logInfo("set e_wb_cbgain %d\n", wbcbgain);
} else if (cmd_type == T_Get) {
sprintf(cmd_tmp, "&%d=%d", e_wb_cbgain, wbcbgain);
strcat(pRet, cmd_tmp);
ret++;
logInfo("get e_wb_cbgain %d\n", wbcbgain);