hc
2024-12-19 9370bb92b2d16684ee45cf24e879c93c509162da
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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
/*
 * Copyright (C) 2019 Rockchip Electronics Co., Ltd.
 *
 * This software is available to you under a choice of one of two
 * licenses.  You may choose to be licensed under the terms of the GNU
 * General Public License (GPL), available from the file
 * COPYING in the main directory of this source tree, or the
 * OpenIB.org BSD license below:
 *
 *     Redistribution and use in source and binary forms, with or
 *     without modification, are permitted provided that the following
 *     conditions are met:
 *
 *      - Redistributions of source code must retain the above
 *        copyright notice, this list of conditions and the following
 *        disclaimer.
 *
 *      - Redistributions in binary form must reproduce the above
 *        copyright notice, this list of conditions and the following
 *        disclaimer in the documentation and/or other materials
 *        provided with the distribution.
 *
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
 * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
 * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
 * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
 * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
 * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
 * SOFTWARE.
 */
 
#include "uvc_video.h"
#include "uvc-gadget.h"
#include "yuv.h"
#include "mpi_enc.h"
#include "uvc_log.h"
 
#include <pthread.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <sys/prctl.h>
#include <sys/ioctl.h>
#include <fcntl.h>
#include <drm/drm.h>
 
#include <list>
#ifdef RK_MPP_USE_UVC_VIDEO_BUFFER
#include "drm.h"
#endif
#if UVC_DYNAMIC_DEBUG_FPS
struct uvc_debug_info_def uvc_debug_info;
#endif
 
struct uvc_buffer_list
{
    std::list<struct uvc_buffer *> buffer_list;
    pthread_mutex_t mutex;
};
 
struct video_uvc
{
    struct uvc_buffer_list write;
    struct uvc_buffer_list read;
    struct uvc_buffer_list all;
    pthread_t id;
    bool run;
    int video_id;
};
 
static std::list<struct uvc_video *> lst_v;
static pthread_mutex_t mtx_v = PTHREAD_MUTEX_INITIALIZER;
 
 
static struct uvc_buffer *uvc_buffer_create(int width, int height, struct uvc_video *v)
{
    struct uvc_buffer *buffer = NULL;
 
    buffer = (struct uvc_buffer *)calloc(1, sizeof(struct uvc_buffer));
    if (!buffer)
        return NULL;
    buffer->width = width;
    buffer->height = height;
    buffer->size = buffer->width * buffer->height * 2;
#ifdef RK_MPP_USE_UVC_VIDEO_BUFFER
    unsigned int drm_flag = 0;
    buffer->drm_buf_size = buffer->size;
    if (v->drm_fd == -1)
        v->drm_fd = drm_open();
    if (v->drm_fd < 0)
        return NULL;
    if (v->uvc_user.fcc == V4L2_PIX_FMT_YUYV || v->uvc_user.fcc == V4L2_PIX_FMT_NV12)
        drm_flag = ROCKCHIP_BO_CACHABLE;
 
    int ret = drm_alloc(v->drm_fd, buffer->drm_buf_size, 16, &buffer->handle, drm_flag);
    if (ret)
    {
        LOG_ERROR("drm_alloc fail\n");
        return NULL;
    }
 
    ret = drm_handle_to_fd(v->drm_fd, buffer->handle, &buffer->fd, DRM_CLOEXEC | DRM_RDWR);
    if (ret)
    {
        LOG_ERROR("drm_handle_to_fd fail\n");
        return NULL;
    }
    buffer->buffer = (void *)drm_map_buffer(v->drm_fd, buffer->handle, buffer->drm_buf_size);
    LOG_DEBUG("v->drm_fd=%d,buffer->handle=%d,size=%d\n", v->drm_fd, buffer->handle, buffer->drm_buf_size);
#else
    buffer->buffer = calloc(1, buffer->size);
#endif
    if (!buffer->buffer)
    {
        free(buffer);
        return NULL;
    }
    buffer->total_size = buffer->size;
    buffer->video_id = v->id;
    return buffer;
}
 
static void uvc_buffer_push_back(struct uvc_buffer_list *uvc_buffer,
                                 struct uvc_buffer *buffer)
{
    pthread_mutex_lock(&uvc_buffer->mutex);
    uvc_buffer->buffer_list.push_back(buffer);
    pthread_mutex_unlock(&uvc_buffer->mutex);
}
 
static struct uvc_buffer *uvc_buffer_pop_front(
    struct uvc_buffer_list *uvc_buffer)
{
    struct uvc_buffer *buffer = NULL;
 
    pthread_mutex_lock(&uvc_buffer->mutex);
    if (!uvc_buffer->buffer_list.empty())
    {
        buffer = uvc_buffer->buffer_list.front();
        uvc_buffer->buffer_list.pop_front();
    }
    pthread_mutex_unlock(&uvc_buffer->mutex);
    return buffer;
}
 
static struct uvc_buffer *uvc_buffer_front(struct uvc_buffer_list *uvc_buffer)
{
    struct uvc_buffer *buffer = NULL;
 
    pthread_mutex_lock(&uvc_buffer->mutex);
    if (!uvc_buffer->buffer_list.empty())
        buffer = uvc_buffer->buffer_list.front();
    else //{printf("buff null\n");
        buffer = NULL;
//     }
    pthread_mutex_unlock(&uvc_buffer->mutex);
    return buffer;
}
 
#ifdef RK_MPP_USE_UVC_VIDEO_BUFFER
static void uvc_drm_buffer_destroy(struct uvc_video *v, struct uvc_buffer_list *uvc_buffer)
{
    struct uvc_buffer *buffer = NULL;
 
    pthread_mutex_lock(&uvc_buffer->mutex);
    while (!uvc_buffer->buffer_list.empty())
    {
        buffer = uvc_buffer->buffer_list.front();
        LOG_INFO("uvc_drm_buffer_destroy buffer->handle=%d size=%d\n", buffer->handle, buffer->drm_buf_size);
        drm_unmap_buffer(buffer->buffer, buffer->drm_buf_size);
        close(buffer->fd);
        drm_free(v->drm_fd, buffer->handle);
        free(buffer);
        uvc_buffer->buffer_list.pop_front();
    }
    pthread_mutex_unlock(&uvc_buffer->mutex);
    pthread_mutex_destroy(&uvc_buffer->mutex);
 
}
#endif
static void uvc_buffer_destroy(struct uvc_buffer_list *uvc_buffer)
{
    struct uvc_buffer *buffer = NULL;
 
    pthread_mutex_lock(&uvc_buffer->mutex);
    while (!uvc_buffer->buffer_list.empty())
    {
        buffer = uvc_buffer->buffer_list.front();
        free(buffer->buffer);
        free(buffer);
        uvc_buffer->buffer_list.pop_front();
    }
    pthread_mutex_unlock(&uvc_buffer->mutex);
    pthread_mutex_destroy(&uvc_buffer->mutex);
}
 
static void uvc_buffer_clear(struct uvc_buffer_list *uvc_buffer)
{
    pthread_mutex_lock(&uvc_buffer->mutex);
    uvc_buffer->buffer_list.clear();
    pthread_mutex_unlock(&uvc_buffer->mutex);
}
 
static void *uvc_gadget_pthread(void *arg)
{
    struct uvc_function_config *fc = (struct uvc_function_config *)arg;
    int *id = (int *)arg;
 
    prctl(PR_SET_NAME, "uvc_gadget_pthread", 0, 0, 0);
 
    uvc_gadget_main(fc);
    uvc_set_user_run_state(true, fc->video);
 
    pthread_exit(NULL);
}
 
int uvc_gadget_pthread_create(struct uvc_function_config *fc)
{
    pthread_t *pid = NULL;
    int id = fc->video;
    uvc_memset_uvc_user(id);
    if ((pid = uvc_video_get_uvc_pid(id)))
    {
        if (pthread_create(pid, NULL, uvc_gadget_pthread, fc))
        {
            LOG_ERROR("create uvc_gadget_pthread fail!\n");
            return -1;
        }
    }
    return 0;
}
 
static int _uvc_video_id_check(int id)
{
    int ret = 0;
 
    if (!lst_v.empty())
    {
        for (std::list<struct uvc_video *>::iterator i = lst_v.begin(); i != lst_v.end(); ++i)
        {
            struct uvc_video *l = *i;
            if (id == l->id)
            {
                ret = -1;
                break;
            }
        }
    }
 
    return ret;
}
 
int uvc_video_id_check(int id)
{
    int ret = 0;
 
    pthread_mutex_lock(&mtx_v);
    ret = _uvc_video_id_check(id);
    pthread_mutex_unlock(&mtx_v);
 
    return ret;
}
 
int uvc_video_id_add(struct uvc_function_config *fc)
{
    int ret = 0;
    int id = fc->video;
 
    LOG_INFO("add uvc video id: %d\n", id);
 
    pthread_mutex_lock(&mtx_v);
    if (!_uvc_video_id_check(id))
    {
        struct uvc_video *v = (struct uvc_video *)calloc(1, sizeof(struct uvc_video));
        if (v)
        {
            v->id = id;
            lst_v.push_back(v);
            pthread_mutex_unlock(&mtx_v);
            uvc_gadget_pthread_create(fc);
            pthread_mutex_lock(&mtx_v);
            pthread_mutex_init(&v->buffer_mutex, NULL);
            pthread_mutex_init(&v->user_mutex, NULL);
            ret = 0;
        }
        else
        {
            LOG_ERROR("%s: %d: memory alloc fail.\n", __func__, __LINE__);
            ret = -1;
        }
    }
    else
    {
        LOG_WARN("%s: %d: %d already exist.\n", __func__, __LINE__, id);
        ret = -1;
    }
    pthread_mutex_unlock(&mtx_v);
 
    return ret;
}
 
void uvc_video_id_remove(int id)
{
    pthread_mutex_lock(&mtx_v);
    if (_uvc_video_id_check(id))
    {
        for (std::list<struct uvc_video *>::iterator i = lst_v.begin(); i != lst_v.end(); ++i)
        {
            struct uvc_video *l = *i;
            if (id == l->id)
            {
                pthread_mutex_destroy(&l->buffer_mutex);
                pthread_mutex_destroy(&l->user_mutex);
                free(l);
                lst_v.erase(i);
                break;
            }
        }
    }
    pthread_mutex_unlock(&mtx_v);
}
 
int uvc_video_id_get(unsigned int seq)
{
    int ret = -1;
 
    pthread_mutex_lock(&mtx_v);
    if (!lst_v.empty())
    {
        unsigned int cnt = 0;
        for (std::list<struct uvc_video *>::iterator i = lst_v.begin(); i != lst_v.end(); ++i)
        {
            if (cnt++ == seq)
            {
                struct uvc_video *l = *i;
                ret = l->id;
                break;
            }
        }
    }
    pthread_mutex_unlock(&mtx_v);
 
    return ret;
}
 
static void uvc_gadget_pthread_exit(int id);
 
static int uvc_video_id_exit(int id)
{
    if (uvc_video_id_check(id))
    {
        uvc_gadget_pthread_exit(id);
        uvc_video_id_remove(id);
        return 0;
    }
 
    return -1;
}
 
static int _uvc_video_id_exit_all()
{
    int ret = -1;
 
    pthread_mutex_lock(&mtx_v);
    if (!lst_v.empty())
    {
        struct uvc_video *l = lst_v.front();
        pthread_mutex_unlock(&mtx_v);
        uvc_video_id_exit(l->id);
        pthread_mutex_lock(&mtx_v);
        ret = 0;
    }
    pthread_mutex_unlock(&mtx_v);
 
    return ret;
}
 
void uvc_video_id_exit_all()
{
    while (!_uvc_video_id_exit_all())
        continue;
}
 
static void _uvc_video_set_uvc_process(struct uvc_video *v, bool state)
{
    v->uvc_process = state;
}
 
void uvc_video_set_uvc_process(int id, bool state)
{
    pthread_mutex_lock(&mtx_v);
    if (_uvc_video_id_check(id))
    {
        for (std::list<struct uvc_video *>::iterator i = lst_v.begin(); i != lst_v.end(); ++i)
        {
            struct uvc_video *l = *i;
            if (id == l->id)
            {
                _uvc_video_set_uvc_process(l, state);
                break;
            }
        }
    }
    pthread_mutex_unlock(&mtx_v);
}
 
static bool _uvc_video_get_uvc_process(struct uvc_video *v)
{
    return v->uvc_process;
}
 
bool uvc_video_get_uvc_process(int id)
{
    bool state = false;
 
    pthread_mutex_lock(&mtx_v);
    if (_uvc_video_id_check(id))
    {
        for (std::list<struct uvc_video *>::iterator i = lst_v.begin(); i != lst_v.end(); ++i)
        {
            struct uvc_video *l = *i;
            if (id == l->id)
            {
                state = _uvc_video_get_uvc_process(l);
                break;
            }
        }
    }
    pthread_mutex_unlock(&mtx_v);
 
    return state;
}
 
pthread_t *uvc_video_get_uvc_pid(int id)
{
    pthread_t *tid = NULL;
 
    pthread_mutex_lock(&mtx_v);
    if (_uvc_video_id_check(id))
    {
        for (std::list<struct uvc_video *>::iterator i = lst_v.begin(); i != lst_v.end(); ++i)
        {
            struct uvc_video *l = *i;
            if (id == l->id)
            {
                tid = &l->uvc_pid;
                break;
            }
        }
    }
    pthread_mutex_unlock(&mtx_v);
 
    return tid;
}
 
void uvc_video_join_uvc_pid(int id)
{
    pthread_mutex_lock(&mtx_v);
    if (_uvc_video_id_check(id))
    {
        for (std::list<struct uvc_video *>::iterator i = lst_v.begin(); i != lst_v.end(); ++i)
        {
            struct uvc_video *l = *i;
            if (id == l->id)
            {
                if (l->uvc_pid)
                {
                    pthread_mutex_unlock(&mtx_v);
                    pthread_join(l->uvc_pid, NULL);
                    l->uvc_pid = 0;
                    pthread_mutex_lock(&mtx_v);
                }
            }
        }
    }
    pthread_mutex_unlock(&mtx_v);
}
 
static void uvc_gadget_pthread_exit(int id)
{
    while (!uvc_get_user_run_state(id))
        pthread_yield();
    uvc_set_user_run_state(false, id);
    uvc_video_join_uvc_pid(id);
}
 
static void _uvc_get_user_resolution(struct uvc_video *v, int *width, int *height);
 
static int _uvc_buffer_init(struct uvc_video *v)
{
    int i = 0;
    int ret = 0;
    struct uvc_buffer *buffer = NULL;
    int width, height;
 
    _uvc_get_user_resolution(v, &width, &height);
 
    pthread_mutex_lock(&v->buffer_mutex);
 
    v->uvc = new video_uvc();
    if (!v->uvc)
    {
        ret = -1;
        goto exit;
    }
    v->uvc->id = 0;
    v->uvc->video_id = v->id;
    v->uvc->run = 1;
    v->buffer_s = NULL;
    pthread_mutex_init(&v->uvc->write.mutex, NULL);
    pthread_mutex_init(&v->uvc->read.mutex, NULL);
 
    uvc_buffer_clear(&v->uvc->write);
    uvc_buffer_clear(&v->uvc->read);
    uvc_buffer_clear(&v->uvc->all);
 
    LOG_DEBUG("UVC_BUFFER_NUM = %d\n", UVC_BUFFER_NUM);
    v->drm_fd = -1;
    for (i = 0; i < UVC_BUFFER_NUM; i++)
    {
        buffer = uvc_buffer_create(width, height, v);
        if (!buffer)
        {
            ret = -1;
            goto exit;
        }
#if (UVC_IO_METHOD == UVC_IO_METHOD_DMA_BUFF)
        uvc_buffer_push_back(&v->uvc->all, buffer);
#endif
        uvc_buffer_push_back(&v->uvc->write, buffer);
 
    }
    _uvc_video_set_uvc_process(v, true);
    v->can_exit = true;
 
exit:
    pthread_mutex_unlock(&v->buffer_mutex);
    return ret;
}
 
int uvc_buffer_init(int id)
{
    int ret = -1;
    pthread_mutex_lock(&mtx_v);
    if (_uvc_video_id_check(id))
    {
        for (std::list<struct uvc_video *>::iterator i = lst_v.begin(); i != lst_v.end(); ++i)
        {
            struct uvc_video *l = *i;
            if (id == l->id)
            {
                ret = _uvc_buffer_init(l);
                break;
            }
        }
    }
    pthread_mutex_unlock(&mtx_v);
 
    return ret;
}
 
static void _uvc_buffer_deinit(struct uvc_video *v)
{
    pthread_mutex_lock(&v->buffer_mutex);
    if (v->uvc)
    {
        v->uvc->run = 0;
        _uvc_video_set_uvc_process(v, false);
        if (v->buffer_s)
            uvc_buffer_push_back(&v->uvc->write, v->buffer_s);
#ifdef RK_MPP_USE_UVC_VIDEO_BUFFER
 
#if UVC_IO_METHOD == UVC_IO_METHOD_DMA_BUFF
        LOG_DEBUG("_uvc_buffer_deinit all\n");
        uvc_drm_buffer_destroy(v, &v->uvc->all);
#else
        LOG_DEBUG("_uvc_buffer_deinit write\n");
        uvc_drm_buffer_destroy(v, &v->uvc->write);
        LOG_DEBUG("_uvc_buffer_deinit read\n");
        uvc_drm_buffer_destroy(v, &v->uvc->read);
#endif
        drm_close(v->drm_fd);
        LOG_DEBUG("_uvc_buffer_deinit drm_close drm_fd:%d\n", v->drm_fd);
        v->drm_fd = -1;
#else
        uvc_buffer_destroy(&v->uvc->write);
        uvc_buffer_destroy(&v->uvc->read);
#endif
        delete v->uvc;
        v->uvc = NULL;
    }
    pthread_mutex_unlock(&v->buffer_mutex);
}
 
void uvc_buffer_deinit(int id)
{
#ifdef RK_MPP_USE_UVC_VIDEO_BUFFER
    struct uvc_video *l;
    if (_uvc_video_id_check(id))
    {
        for (std::list<struct uvc_video *>::iterator i = lst_v.begin(); i != lst_v.end(); ++i)
        {
            l = *i;
            if (id == l->id)
            {
                break;
            }
        }
    }
    int wait_cnt = 0;
    while (l->uvc_process && !l->can_exit)
    {
        wait_cnt++;
        usleep(1000);
        if (wait_cnt > 30) {
          LOG_INFO("uvc_buffer_deinit timeout 30ms,force exit!\n");
          break;
        }
    }
 
    pthread_mutex_lock(&mtx_v);
    _uvc_buffer_deinit(l);
    pthread_mutex_unlock(&mtx_v);
#else
    pthread_mutex_lock(&mtx_v);
    if (_uvc_video_id_check(id))
    {
        for (std::list<struct uvc_video *>::iterator i = lst_v.begin(); i != lst_v.end(); ++i)
        {
            struct uvc_video *l = *i;
            if (id == l->id)
            {
                _uvc_buffer_deinit(l);
                break;
            }
        }
    }
    pthread_mutex_unlock(&mtx_v);
#endif
}
 
static bool _uvc_buffer_write_enable(struct uvc_video *v)
{
    bool ret = false;
 
    if (pthread_mutex_trylock(&v->buffer_mutex))
        return ret;
    if (v->uvc && uvc_buffer_front(&v->uvc->write))
        ret = true;
    pthread_mutex_unlock(&v->buffer_mutex);
    return ret;
}
 
bool uvc_buffer_write_enable(int id)
{
    bool ret = false;
 
    pthread_mutex_lock(&mtx_v);
    if (_uvc_video_id_check(id))
    {
        for (std::list<struct uvc_video *>::iterator i = lst_v.begin(); i != lst_v.end(); ++i)
        {
            struct uvc_video *l = *i;
            if (id == l->id)
            {
                ret = _uvc_buffer_write_enable(l);
                break;
            }
        }
    }
    pthread_mutex_unlock(&mtx_v);
 
    return ret;
}
 
static bool _uvc_buffer_read_enable(struct uvc_video *v)
{
    bool ret = false;
 
    if (pthread_mutex_trylock(&v->buffer_mutex))
        return ret;
    if (v->uvc && uvc_buffer_front(&v->uvc->read))
        ret = true;
    pthread_mutex_unlock(&v->buffer_mutex);
    return ret;
}
 
bool uvc_buffer_read_enable(int id)
{
    bool ret = false;
 
    pthread_mutex_lock(&mtx_v);
    if (_uvc_video_id_check(id))
    {
        for (std::list<struct uvc_video *>::iterator i = lst_v.begin(); i != lst_v.end(); ++i)
        {
            struct uvc_video *l = *i;
            if (id == l->id)
            {
                ret = _uvc_buffer_read_enable(l);
                break;
            }
        }
    }
    pthread_mutex_unlock(&mtx_v);
 
    return ret;
}
 
static bool _uvc_mpp_buffer_write_enable(struct uvc_video *v)
{
    bool ret = false;
 
    //if (pthread_mutex_trylock(&v->buffer_mutex))
    //    return ret;
    if (v->uvc && uvc_buffer_front(&v->uvc->write))
        ret = true;
    // pthread_mutex_unlock(&v->buffer_mutex);
    return ret;
}
 
bool uvc_mpp_buffer_write_enable(int id)
{
    bool ret = false;
 
    pthread_mutex_lock(&mtx_v);
    if (_uvc_video_id_check(id))
    {
        for (std::list<struct uvc_video *>::iterator i = lst_v.begin(); i != lst_v.end(); ++i)
        {
            struct uvc_video *l = *i;
            if (id == l->id)
            {
                ret = _uvc_buffer_write_enable(l);
                break;
            }
        }
    }
    pthread_mutex_unlock(&mtx_v);
 
    return ret;
}
 
#define EX_MAX_LEN 65535
#define EX_DATA_LEN (EX_MAX_LEN - 2)
static void _uvc_buffer_write(struct uvc_video *v,
                              unsigned short stamp,
                              void *extra_data,
                              size_t extra_size,
                              void *data,
                              size_t size,
                              unsigned int fcc)
{
    const size_t cnt = extra_size / (EX_DATA_LEN + 1) + 1;
    pthread_mutex_lock(&v->buffer_mutex);
    if (v->uvc && data)
    {
        struct uvc_buffer *buffer = uvc_buffer_pop_front(&v->uvc->write);
        if (buffer && buffer->buffer)
        {
            if (buffer->total_size >= extra_size + size)
            {
                switch (fcc)
                {
                case V4L2_PIX_FMT_YUYV:
#if YUYV_AS_RAW
#ifdef USE_RK_MODULE
                    raw16_to_raw8(buffer->width, buffer->height, data, buffer->buffer);
#else
                    memcpy(buffer->buffer, data, size);
#endif
#else
                    NV12_to_YUYV(buffer->width, buffer->height, data, buffer->buffer);
#endif
                    break;
                case V4L2_PIX_FMT_MJPEG:
                    if (extra_data && buffer->total_size >= extra_size + size + 4 * cnt)
                    {
                        size_t index = 4;// FF D8 FF E0
                        size_t len = *((unsigned char *)data + index);
                        len = len * 256 + *((unsigned char *)data + index + 1);
                        index = index + len;
                        memcpy(buffer->buffer, data, index);
                        size_t ind = index;
                        for (size_t i = 1; i < cnt; i++)
                        {
                            memset((char *)buffer->buffer + ind, 0xFF, 1);
                            ind++;
                            memset((char *)buffer->buffer + ind, 0xE2, 1);
                            ind++;
                            memset((char *)buffer->buffer + ind, EX_MAX_LEN / 256, 1);
                            ind++;
                            memset((char *)buffer->buffer + ind, EX_MAX_LEN % 256, 1);
                            ind++;
                            memcpy((char *)buffer->buffer + ind,
                                   (char *)extra_data + (i - 1) * EX_DATA_LEN, EX_DATA_LEN);
                            ind += EX_DATA_LEN;
                        }
                        memset((char *)buffer->buffer + ind, 0xFF, 1);
                        ind ++;
                        memset((char *)buffer->buffer + ind, 0xE2, 1);
                        ind++;
                        memset((char *)buffer->buffer + ind,
                               (2 + extra_size - EX_DATA_LEN * (cnt - 1)) / 256, 1);
                        ind++;
                        memset((char *)buffer->buffer + ind,
                               (2 + extra_size - EX_DATA_LEN * (cnt - 1)) % 256, 1);
                        ind++;
                        memcpy((char *)buffer->buffer + ind,
                               (char *)extra_data + EX_DATA_LEN * (cnt - 1),
                               extra_size - EX_DATA_LEN * (cnt - 1));
                        ind += extra_size - EX_DATA_LEN * (cnt - 1);
                        memcpy((char *)buffer->buffer + ind,
                               (char *)data + index, size - index);
                        extra_size += 4 * cnt;
                    }
                    else
                    {
                        memcpy(buffer->buffer, data, size);
                    }
                    //memcpy((char*)buffer->buffer + size, &stamp, sizeof(stamp));
                    //size += sizeof(stamp);
                    break;
                case V4L2_PIX_FMT_H264:
                case V4L2_PIX_FMT_H265:
                    if (extra_data && extra_size > 0)
                        memcpy(buffer->buffer, extra_data, extra_size);
                    if (extra_size >= 0)
                        memcpy((char *)buffer->buffer + extra_size, data, size);
                    break;
                }
                buffer->size = extra_size + size;
                uvc_buffer_push_back(&v->uvc->read, buffer);
            }
            else
            {
                uvc_buffer_push_back(&v->uvc->write, buffer);
            }
        }
    }
    pthread_mutex_unlock(&v->buffer_mutex);
}
 
void uvc_buffer_write(unsigned short stamp,
                      void *extra_data,
                      size_t extra_size,
                      void *data,
                      size_t size,
                      unsigned int fcc,
                      int id)
{
    pthread_mutex_lock(&mtx_v);
    if (_uvc_video_id_check(id))
    {
        for (std::list<struct uvc_video *>::iterator i = lst_v.begin(); i != lst_v.end(); ++i)
        {
            struct uvc_video *l = *i;
            if (id == l->id)
            {
                _uvc_buffer_write(l, stamp, extra_data, extra_size, data, size, fcc);
                break;
            }
        }
    }
    pthread_mutex_unlock(&mtx_v);
}
 
#ifdef RK_MPP_USE_UVC_VIDEO_BUFFER
struct uvc_buffer *uvc_buffer_write_get(int id)
{
    struct uvc_buffer *buffer = NULL;
    pthread_mutex_lock(&mtx_v);
    if (_uvc_video_id_check(id))
    {
        for (std::list<struct uvc_video *>::iterator i = lst_v.begin(); i != lst_v.end(); ++i)
        {
            struct uvc_video *l = *i;
            if (id == l->id)
            {
                l->can_exit = false;
                pthread_mutex_lock(&l->buffer_mutex);
                buffer = uvc_buffer_pop_front(&l->uvc->write);
                pthread_mutex_unlock(&l->buffer_mutex);
                break;
            }
        }
    }
    pthread_mutex_unlock(&mtx_v);
    return buffer;
}
 
struct uvc_buffer *uvc_buffer_write_get_nolock(int id)
{
    struct uvc_buffer *buffer = NULL;
    if (_uvc_video_id_check(id))
    {
        for (std::list<struct uvc_video *>::iterator i = lst_v.begin(); i != lst_v.end(); ++i)
        {
            struct uvc_video *l = *i;
            if (id == l->id)
            {
                l->can_exit = false;
                pthread_mutex_lock(&l->buffer_mutex);
                buffer = uvc_buffer_pop_front(&l->uvc->write);
                //if (l->)
                pthread_mutex_unlock(&l->buffer_mutex);
                break;
            }
        }
    }
    return buffer;
}
 
void uvc_buffer_read_set_nolock(int id, struct uvc_buffer *buf)
{
#if 1
    //uvc_ipc_test_write();
 
#endif
    if (buf->abandon)
    {
        LOG_INFO("uvc_buffer_read_set_nolock abandon\n");
    }
    else if (_uvc_video_id_check(id))
    {
        for (std::list<struct uvc_video *>::iterator i = lst_v.begin(); i != lst_v.end(); ++i)
        {
            struct uvc_video *l = *i;
            if (id == l->id)
            {
                l->can_exit = true;
                pthread_mutex_lock(&l->buffer_mutex);
                uvc_buffer_push_back(&l->uvc->read, buf);
                pthread_mutex_unlock(&l->buffer_mutex);
//                l->shm_control->sendUVCBuffer();
                break;
            }
        }
    }
}
 
void uvc_buffer_read_set(int id, struct uvc_buffer *buf)
{
    pthread_mutex_lock(&mtx_v);
    if (buf->abandon)
    {
        LOG_INFO("uvc_buffer_read_set abandon\n");
    }
    else if (_uvc_video_id_check(id))
    {
        for (std::list<struct uvc_video *>::iterator i = lst_v.begin(); i != lst_v.end(); ++i)
        {
            struct uvc_video *l = *i;
            if (id == l->id)
            {
                l->can_exit = true;
                pthread_mutex_lock(&l->buffer_mutex);
                uvc_buffer_push_back(&l->uvc->read, buf);
                pthread_mutex_unlock(&l->buffer_mutex);
                break;
            }
        }
    }
 
    pthread_mutex_unlock(&mtx_v);
}
 
void uvc_buffer_write_set(int id, struct uvc_buffer *buf)
{
    pthread_mutex_lock(&mtx_v);
    if (_uvc_video_id_check(id))
    {
        for (std::list<struct uvc_video *>::iterator i = lst_v.begin(); i != lst_v.end(); ++i)
        {
            struct uvc_video *l = *i;
            if (id == l->id)
            {
                // l->can_exit = true;
                pthread_mutex_lock(&l->buffer_mutex);
                uvc_buffer_push_back(&l->uvc->write, buf);
                pthread_mutex_unlock(&l->buffer_mutex);
                break;
            }
        }
    }
 
    pthread_mutex_unlock(&mtx_v);
}
 
void uvc_buffer_all_set(int id, struct uvc_buffer *buf)
{
    pthread_mutex_lock(&mtx_v);
    if (_uvc_video_id_check(id))
    {
        for (std::list<struct uvc_video *>::iterator i = lst_v.begin(); i != lst_v.end(); ++i)
        {
            struct uvc_video *l = *i;
            if (id == l->id)
            {
                // l->can_exit = true;
                pthread_mutex_lock(&l->buffer_mutex);
                uvc_buffer_push_back(&l->uvc->all, buf);
                pthread_mutex_unlock(&l->buffer_mutex);
                break;
            }
        }
    }
 
    pthread_mutex_unlock(&mtx_v);
}
 
#endif
static void _uvc_set_user_resolution(struct uvc_video *v, int width, int height)
{
    pthread_mutex_lock(&v->user_mutex);
    v->uvc_user.width = width;
    v->uvc_user.height = height;
    LOG_DEBUG("uvc_user.width = %u, uvc_user.height = %u\n", v->uvc_user.width,
             v->uvc_user.height);
    pthread_mutex_unlock(&v->user_mutex);
}
 
void uvc_set_user_resolution(int width, int height, int id)
{
    pthread_mutex_lock(&mtx_v);
    if (_uvc_video_id_check(id))
    {
        for (std::list<struct uvc_video *>::iterator i = lst_v.begin(); i != lst_v.end(); ++i)
        {
            struct uvc_video *l = *i;
            if (id == l->id)
            {
                _uvc_set_user_resolution(l, width, height);
                break;
            }
        }
    }
    pthread_mutex_unlock(&mtx_v);
}
 
static void _uvc_get_user_resolution(struct uvc_video *v, int *width, int *height)
{
    pthread_mutex_lock(&v->user_mutex);
    *width = v->uvc_user.width;
    *height = v->uvc_user.height;
    pthread_mutex_unlock(&v->user_mutex);
}
 
void uvc_get_user_resolution(int *width, int *height, int id)
{
    pthread_mutex_lock(&mtx_v);
    if (_uvc_video_id_check(id))
    {
        for (std::list<struct uvc_video *>::iterator i = lst_v.begin(); i != lst_v.end(); ++i)
        {
            struct uvc_video *l = *i;
            if (id == l->id)
            {
                _uvc_get_user_resolution(l , width, height);
                break;
            }
        }
    }
    pthread_mutex_unlock(&mtx_v);
}
 
static bool _uvc_get_user_run_state(struct uvc_video *v)
{
    bool ret;
 
    pthread_mutex_lock(&v->user_mutex);
    ret = v->uvc_user.run;
    pthread_mutex_unlock(&v->user_mutex);
 
    return ret;
}
 
bool uvc_get_user_run_state(int id)
{
    bool state = false;
 
    pthread_mutex_lock(&mtx_v);
    if (_uvc_video_id_check(id))
    {
        for (std::list<struct uvc_video *>::iterator i = lst_v.begin(); i != lst_v.end(); ++i)
        {
            struct uvc_video *l = *i;
            if (id == l->id)
            {
                state = _uvc_get_user_run_state(l);
                break;
            }
        }
    }
    pthread_mutex_unlock(&mtx_v);
 
    return state;
}
 
#if UVC_SEND_BUF_WHEN_ENC_READY
#ifdef RK_MPP_USE_UVC_VIDEO_BUFFER
int uvc_video_qbuf_index(struct uvc_device *dev, struct uvc_buffer *send_buf, int index, int len)
{
#if 0
    LOG_INFO("uvc_video_qbuf_index enter send_buf=%p,index:%d len=%d,dev->nbufs=%d\n",
                     send_buf, index, len, dev->nbufs);
#endif
    unsigned int i;
    int ret;
    struct v4l2_requestbuffers req;
    memset(&req, 0, sizeof (req));
 
    req.count = dev->nbufs;
    req.type = V4L2_BUF_TYPE_VIDEO_OUTPUT;
    req.memory = V4L2_MEMORY_DMABUF;
    if (index == 0) {
        uvc_video_reqbufs(dev, dev->nbufs);
        uvc_video_stream(dev, 1);
        dev->vbuf_info = (struct v4l2_buffer_info *)calloc(dev->nbufs, sizeof(struct v4l2_buffer_info));
    }
 
    /* UVC standalone setup. */
    if (dev->run_standalone)
    {
        struct v4l2_buffer buf;
        memset(&buf, 0, sizeof(buf));
        buf.type = req.type;
        buf.index = index;
        buf.memory = req.memory;
 
        struct uvc_buffer *uvc_buf = send_buf;//uvc_buffer_write_get(dev->video_id);
        buf.m.fd = uvc_buf->fd;
        buf.length = uvc_buf->total_size;
        buf.bytesused = len;
        dev->ubuf.bytesused = len;
        dev->vbuf_info[index].fd = buf.m.fd;
        dev->vbuf_info[index].uvc_buf = uvc_buf;
        dev->vbuf_info[index].index = index;
 
        if (ioctl(dev->uvc_fd, VIDIOC_QBUF, &buf) < 0)
        {
            LOG_ERROR("%s ioctl(VIDIOC_QBUF): %m,buf.m.fd=%d,buf.length=%d\n", dev, buf.m.fd,  buf.length);
            return -1;
        }
        else
        {
            LOG_INFO("V4L2: %u buffers allocated index:%d\n", dev->nbufs, index);
        }
    }
 
    return 0;
}
#endif
#endif
static void _uvc_set_user_run_state(struct uvc_video *v, bool state)
{
    pthread_mutex_lock(&v->user_mutex);
    v->uvc_user.run = state;
    pthread_mutex_unlock(&v->user_mutex);
}
 
void uvc_set_user_run_state(bool state, int id)
{
    pthread_mutex_lock(&mtx_v);
    if (_uvc_video_id_check(id))
    {
        for (std::list<struct uvc_video *>::iterator i = lst_v.begin(); i != lst_v.end(); ++i)
        {
            struct uvc_video *l = *i;
            if (id == l->id)
            {
                _uvc_set_user_run_state(l, state);
                break;
            }
        }
    }
    pthread_mutex_unlock(&mtx_v);
}
 
static void _uvc_set_user_fcc(struct uvc_video *v, unsigned int fcc)
{
    v->uvc_user.fcc = fcc;
}
 
void uvc_set_user_fcc(unsigned int fcc, int id)
{
    pthread_mutex_lock(&mtx_v);
    if (_uvc_video_id_check(id))
    {
        for (std::list<struct uvc_video *>::iterator i = lst_v.begin(); i != lst_v.end(); ++i)
        {
            struct uvc_video *l = *i;
            if (id == l->id)
            {
                _uvc_set_user_fcc(l, fcc);
                break;
            }
        }
    }
    pthread_mutex_unlock(&mtx_v);
}
 
static unsigned int _uvc_get_user_fcc(struct uvc_video *v)
{
    return v->uvc_user.fcc;
}
 
unsigned int uvc_get_user_fcc(int id)
{
    unsigned int fcc = 0;
 
    pthread_mutex_lock(&mtx_v);
    if (_uvc_video_id_check(id))
    {
        for (std::list<struct uvc_video *>::iterator i = lst_v.begin(); i != lst_v.end(); ++i)
        {
            struct uvc_video *l = *i;
            if (id == l->id)
            {
                fcc = _uvc_get_user_fcc(l);
                break;
            }
        }
    }
    pthread_mutex_unlock(&mtx_v);
 
    return fcc;
}
 
static void _uvc_memset_uvc_user(struct uvc_video *v)
{
    memset(&v->uvc_user, 0, sizeof(struct uvc_user));
}
 
void uvc_memset_uvc_user(int id)
{
    pthread_mutex_lock(&mtx_v);
    if (_uvc_video_id_check(id))
    {
        for (std::list<struct uvc_video *>::iterator i = lst_v.begin(); i != lst_v.end(); ++i)
        {
            struct uvc_video *l = *i;
            if (id == l->id)
            {
                _uvc_memset_uvc_user(l);
                break;
            }
        }
    }
    pthread_mutex_unlock(&mtx_v);
}
 
static bool _uvc_buffer_check(struct uvc_video *v, struct uvc_buffer *buffer)
{
    int width = 0, height = 0;
 
    _uvc_get_user_resolution(v, &width, &height);
    if (buffer->width == width && buffer->height == height)
        return true;
    else
        return false;
}
 
static void uvc_delay_time_calcu_before_get(struct uvc_device *dev, struct uvc_video *v)
{
#if UVC_DYNAMIC_DEBUG_USE_TIME
    if (!access(UVC_DYNAMIC_DEBUG_USE_TIME_CHECK, 0))
    {
        int32_t use_time_us, now_time_us;
        struct timespec now_tm = {0, 0};
        clock_gettime(CLOCK_MONOTONIC, &now_tm);
        now_time_us = now_tm.tv_sec * 1000000LL + now_tm.tv_nsec / 1000; // us
        use_time_us = now_time_us - v->last_pts;   //usb send ok and calcu the latency time use last pts
        LOG_INFO("isp->mpp->usb_ready->usb_send_ok seq:%d latency time:%d us, %d ms\n", v->last_seq, use_time_us, use_time_us / 1000);
    }
 
    if (dev->usb_state == USB_STATE_FIRST_GET_READY)
    {
        int32_t use_time_us;
        struct timespec now_tm = {0, 0};
        clock_gettime(CLOCK_MONOTONIC, &now_tm);
        dev->usb_state = USB_STATE_FIRST_GET_OK;
        dev->first_usb_get_ready_pts = now_tm.tv_sec * 1000000LL + now_tm.tv_nsec / 1000;
        use_time_us = dev->first_usb_get_ready_pts - dev->stream_on_pts;
        LOG_INFO("steamon->get_ready latency time:%d us, %d ms\n", use_time_us, use_time_us / 1000);
    }
    else if (dev->usb_state == USB_STATE_FIRST_SEND_OK)
    {
        struct timespec now_tm = {0, 0};
        int32_t use_time_us;
        clock_gettime(CLOCK_MONOTONIC, &now_tm);
        dev->first_usb_send_ok_pts = now_tm.tv_sec * 1000000LL + now_tm.tv_nsec / 1000;
        dev->usb_state = USB_STATE_NORMAL_RUN;
        use_time_us = dev->first_usb_send_ok_pts - dev->stream_on_pts;
        LOG_INFO("steamon->get_ready->get_ok->send_ok latency time:%d us, %d ms\n", use_time_us, use_time_us / 1000);
        use_time_us = dev->first_usb_send_ok_pts - v->last_pts;
        LOG_INFO("isp->mpp->usb_ready->usb_send_ok seq:%d latency time:%d us, %d ms\n", v->last_seq, use_time_us, use_time_us / 1000);
    }
#endif
 
}
 
static void uvc_delay_time_calcu_after_get(struct uvc_device *dev, struct uvc_video *v, struct uvc_buffer *buffer)
{
#if UVC_DYNAMIC_DEBUG_USE_TIME
    if (dev->usb_state == USB_STATE_FIRST_GET_OK)
    {
        struct timespec now_tm = {0, 0};
        int32_t use_time_us;
        clock_gettime(CLOCK_MONOTONIC, &now_tm);
        dev->first_usb_get_ok_pts = now_tm.tv_sec * 1000000LL + now_tm.tv_nsec / 1000;
        dev->usb_state = USB_STATE_FIRST_SEND_OK;
        use_time_us = dev->first_usb_get_ok_pts - dev->stream_on_pts;
        LOG_INFO("steamon->get_ready->get_ok seq:%d time:%d us, %d ms\n", buffer->seq, use_time_us, use_time_us / 1000);
    }
 
    v->last_pts = buffer->pts;
    v->now_pts = buffer->pts;
    v->last_seq = buffer->seq;
    if (!access(UVC_DYNAMIC_DEBUG_USE_TIME_CHECK, 0))
    {
        int32_t use_time_us, now_time_us;
        struct timespec now_tm = {0, 0};
        clock_gettime(CLOCK_MONOTONIC, &now_tm);
        now_time_us = now_tm.tv_sec * 1000000LL + now_tm.tv_nsec / 1000; // us
        use_time_us = now_time_us - v->now_pts;
        LOG_INFO("isp->mpp->usb_ready seq:%d latency time:%d us, %d ms\n", buffer->seq, use_time_us, use_time_us / 1000);
    }
#endif
}
static int drop_frame_cnt = 0;
struct uvc_buffer *uvc_get_enc_data(struct uvc_device *dev, struct uvc_video *v, bool init)
{
    struct uvc_buffer *buffer = NULL;
    v->idle_cnt = 0;
    int time_out = 60;
    if (init)
        time_out = 30;
    while (!(buffer = uvc_buffer_front(&v->uvc->read)) && _uvc_get_user_run_state(v))
    {
        pthread_mutex_unlock(&mtx_v);
        usleep(1000);
        v->idle_cnt++;
        pthread_mutex_lock(&mtx_v);
        if (v->idle_cnt > time_out)
        {
            if(!(buffer = uvc_buffer_front(&v->uvc->read)) && _uvc_get_user_run_state(v)) // onece more check it.
            {
                if (init == false) {
                    if(drop_frame_cnt == 0) {
                      LOG_DEBUG("fill buf timeout %d ms, abandon this write buf %d\n",time_out, v->buffer_s->fd);
                    }
                    //v->buffer_s->abandon = true;
                    //uvc_buffer_pop_front(&v->uvc->write);
                } else {
                    if(drop_frame_cnt == 0) {
                       LOG_DEBUG("init:%d,fill buf timeout %d ms\n", init, time_out);
                    }
                }
                drop_frame_cnt++;
                if(drop_frame_cnt > 200) {
                   if (access("/tmp/uvc_camera_no_buf", 0)) {
                     LOG_INFO("it's already 200 frames buf no to get from CAMERA,tell watchdog now\n");
                     system("touch /tmp/uvc_camera_no_buf &");
                   }
                   drop_frame_cnt = 0;
                }
            }
            break;
        }
    }
   // LOG_INFO("init:%d,uvc_get_enc_data: %p\n", init, buffer);
#if UVC_SEND_BUF_WHEN_ENC_READY
    if (init && buffer) {
        uvc_video_qbuf_index(dev, buffer, dev->get_buf_count, buffer->size);
    }
#endif
 
    if (buffer)
        uvc_delay_time_calcu_after_get(dev, v, buffer);
    return buffer;
}
 
#if UVC_SEND_BUF_WHEN_ENC_READY
struct uvc_buffer *uvc_user_fill_buffer_init(struct uvc_device *dev)
{
    pthread_mutex_lock(&mtx_v);
    struct uvc_buffer *buffer = NULL;
    if (_uvc_video_id_check(dev->video_id))
    {
        for (std::list<struct uvc_video *>::iterator i = lst_v.begin(); i != lst_v.end(); ++i)
        {
            struct uvc_video *l = *i;
            if (dev->video_id == l->id)
            {
                uvc_delay_time_calcu_before_get(dev, l);
                if(uvc_get_enc_data(dev, l, true)) {
                    buffer = uvc_buffer_pop_front(&l->uvc->read);
                }
                break;
            }
        }
    }
    pthread_mutex_unlock(&mtx_v);
    return buffer;
}
#endif
 
static void _uvc_user_fill_buffer(struct uvc_video *v, struct uvc_device *dev, struct v4l2_buffer *buf)
{
    struct uvc_buffer *buffer = NULL;
    bool get_ok = false;
    uvc_delay_time_calcu_before_get(dev, v);
 
#if 0//UVC_IO_METHOD == UVC_IO_METHOD_DMA_BUFF
    for (int i = 0; i < dev->nbufs; i++)
    {
        if (dev->vbuf_info[i].fd == buf->m.fd)
        {
            v->buffer_s = dev->vbuf_info[i].uvc_buf;
            v->buffer_s->abandon = false;
            break;
        }
    }
    uvc_buffer_push_back(&v->uvc->write, v->buffer_s);
#endif
 
    buffer = uvc_get_enc_data(dev, v, false);
    if (buffer)
    {
        for (int i = 0; i < dev->nbufs; i++)
        {
            if (buffer == dev->vbuf_info[i].uvc_buf)
            {
                buf->index = dev->vbuf_info[i].index;
                buf->sequence = buffer->seq;
                buf->m.fd = dev->vbuf_info[i].fd;
                get_ok = true;
                break;
            }
        }
 
        if (get_ok == false || !_uvc_buffer_check(v, buffer)) {
            LOG_ERROR("fail:%d\n", get_ok);
            return;
        }
        if (_uvc_get_user_run_state(v) && _uvc_video_get_uvc_process(v))
        {
            if (buf->length >= buffer->size && buffer->buffer)
            {
                // buf->bytesused = 550*1024;//for test
                buf->bytesused = buffer->size;
#if UVC_IO_METHOD == UVC_IO_METHOD_MMAP
                memcpy(dev->mem[buf->index].start, buffer->buffer, buffer->size);
#elif UVC_IO_METHOD == UVC_IO_METHOD_DMA_BUFF
 
#else
                dev->mem[buf->index].start = buffer->buffer;
#endif
                drop_frame_cnt = 0;
            }
        }
        else
        {
            LOG_WARN("_uvc_user_fill_buffer no go here \n");
#if UVC_IO_METHOD == UVC_IO_METHOD_MMAP
            buf->bytesused = buf->length;
#elif UVC_IO_METHOD == UVC_IO_METHOD_DMA_BUFF
            buf->bytesused = 0;
#else
            buf->bytesused = buf->length;
#endif
        }
 
        buffer = uvc_buffer_pop_front(&v->uvc->read);
#if UVC_IO_METHOD == UVC_IO_METHOD_MMAP
        if (!v->buffer_s)
        {
            v->buffer_s = buffer;
        }
        else
        {
            uvc_buffer_push_back(&v->uvc->write, v->buffer_s);
            v->buffer_s = buffer;
        }
#elif UVC_IO_METHOD == UVC_IO_METHOD_DMA_BUFF
 
#else
 
#endif
 
    }
    else if (v->buffer_s)
    {
        if (!_uvc_buffer_check(v, v->buffer_s))
            return;
        if (_uvc_get_user_run_state(v) && _uvc_video_get_uvc_process(v))
        {
            if (buf->length >= v->buffer_s->size && v->buffer_s->buffer)
            {
                buf->bytesused = v->buffer_s->size;
#if UVC_IO_METHOD == UVC_IO_METHOD_MMAP
                memcpy(dev->mem[buf->index].start, v->buffer_s->buffer, v->buffer_s->size);
#elif UVC_IO_METHOD == UVC_IO_METHOD_DMA_BUFF
                buf->bytesused = 0;
                buf->m.fd = 0;
#else
                dev->mem[buf->index].start = v->buffer_s->buffer;
#endif
            }
        }
    }
    else
    {
        buf->bytesused = 0;
        buf->m.fd = 0;
#if UVC_IO_METHOD == UVC_IO_METHOD_MMAP
        memset(dev->mem[buf->index].start, 0, buf->length);
#elif UVC_IO_METHOD == UVC_IO_METHOD_DMA_BUFF
 
#else
 
#endif
    }
 
}
 
void uvc_user_fill_buffer(struct uvc_device *dev, struct v4l2_buffer *buf, int id)
{
    pthread_mutex_lock(&mtx_v);
    if (_uvc_video_id_check(id))
    {
        for (std::list<struct uvc_video *>::iterator i = lst_v.begin(); i != lst_v.end(); ++i)
        {
            struct uvc_video *l = *i;
            if (id == l->id)
            {
                _uvc_user_fill_buffer(l, dev, buf);
                break;
            }
        }
    }
    pthread_mutex_unlock(&mtx_v);
}
 
static void _uvc_user_set_write_buffer(struct uvc_video *v, struct uvc_device *dev, struct v4l2_buffer *buf)
{
    struct uvc_buffer *buffer = NULL;
    bool get_ok = false;
 //   uvc_delay_time_calcu_before_get(dev, v);
    for (int i = 0; i < dev->nbufs; i++)
    {
        if (dev->vbuf_info[i].fd == buf->m.fd)
        {
            v->buffer_s = dev->vbuf_info[i].uvc_buf;
            v->buffer_s->abandon = false;
            get_ok = true;
            break;
        }
    }
    if (get_ok)
        uvc_buffer_push_back(&v->uvc->write, v->buffer_s);
    else
        LOG_ERROR("fail:%d\n", buf->m.fd);
}
 
void uvc_user_set_write_buffer(struct uvc_device *dev, struct v4l2_buffer *buf, int id)
{
    pthread_mutex_lock(&mtx_v);
    if (_uvc_video_id_check(id))
    {
        for (std::list<struct uvc_video *>::iterator i = lst_v.begin(); i != lst_v.end(); ++i)
        {
            struct uvc_video *l = *i;
            if (id == l->id)
            {
                _uvc_user_set_write_buffer(l, dev, buf);
                break;
            }
        }
    }
    pthread_mutex_unlock(&mtx_v);
}
 
void uvc_user_lock()
{
    pthread_mutex_lock(&mtx_v);
}
 
void uvc_user_unlock()
{
    pthread_mutex_unlock(&mtx_v);
}