Browse Source

修改卡顿问题

chenzubin 3 months ago
parent
commit
d3a5220456
4 changed files with 69 additions and 138 deletions
  1. 1 0
      .idea/gradle.xml
  2. 0 1
      .idea/misc.xml
  3. 67 137
      app/src/main/cpp/PCode.c
  4. 1 0
      settings.gradle

+ 1 - 0
.idea/gradle.xml

@@ -1,5 +1,6 @@
1 1
 <?xml version="1.0" encoding="UTF-8"?>
2 2
 <project version="4">
3
+  <component name="GradleMigrationSettings" migrationVersion="1" />
3 4
   <component name="GradleSettings">
4 5
     <option name="linkedExternalProjectsSettings">
5 6
       <GradleProjectSettings>

+ 0 - 1
.idea/misc.xml

@@ -1,4 +1,3 @@
1
-<?xml version="1.0" encoding="UTF-8"?>
2 1
 <project version="4">
3 2
   <component name="ExternalStorageConfigurationManager" enabled="true" />
4 3
   <component name="ProjectRootManager" version="2" languageLevel="JDK_17" default="true" project-jdk-name="jbr-17" project-jdk-type="JavaSDK">

+ 67 - 137
app/src/main/cpp/PCode.c

@@ -1,10 +1,11 @@
1 1
 
2
-#include "mbedtls/cipher.h"
3
-#include "mbedtls/entropy.h"
4
-#include "mbedtls/ctr_drbg.h"
2
+extern "C" {
3
+#include <libavcodec/avcodec.h>
4
+}
5 5
 
6
-#include <stdio.h>
7
-#include <string.h>
6
+#include <iostream>
7
+#include <vector>
8
+#include <string>
8 9
 
9 10
 static void print_hex(const char *title, const unsigned char buf[], size_t len)
10 11
 {
@@ -16,8 +17,7 @@ static void print_hex(const char *title, const unsigned char buf[], size_t len)
16 17
 }
17 18
 
18 19
 /*
19
- * The pre-shared key. Should be generated randomly and be unique to the
20
- * device/channel/etc. Just used a fixed on here for simplicity.
20
+ * 建立共享内存通道
21 21
  */
22 22
 static const unsigned char secret_key[16] = {
23 23
         0xf4, 0x82, 0xc6, 0x70, 0x3c, 0xc7, 0x61, 0x0a,
@@ -26,151 +26,81 @@ static const unsigned char secret_key[16] = {
26 26
 
27 27
 static int pcode(void)
28 28
 {
29
-    /* message that should be protected */
30
-    const char message[] = "Some things are better left unread";
31
-    /* metadata transmitted in the clear but authenticated */
32
-    const char metadata[] = "eg sequence number, routing info";
33
-    /* ciphertext buffer large enough to hold message + nonce + tag */
34
-    unsigned char ciphertext[128] = { 0 };
35
-    int ret;
36
-
37
-    printf("\r\n\r\n");
38
-    print_hex("plaintext message", (unsigned char *) message, sizeof message);
39
-
40
-    /*
41
-     * Setup random number generator
42
-     * (Note: later this might be done automatically.)
43
-     */
44
-    mbedtls_entropy_context entropy;    /* entropy pool for seeding PRNG */
45
-    mbedtls_ctr_drbg_context drbg;      /* pseudo-random generator */
46
-
47
-    mbedtls_entropy_init(&entropy);
48
-    mbedtls_ctr_drbg_init(&drbg);
49
-
50
-    /* Seed the PRNG using the entropy pool, and throw in our secret key as an
51
-     * additional source of randomness. */
52
-    ret = mbedtls_ctr_drbg_seed(&drbg, mbedtls_entropy_func, &entropy,
53
-                                secret_key, sizeof (secret_key));
54
-    if (ret != 0) {
55
-        printf("mbedtls_ctr_drbg_init() returned -0x%04X\r\n", -ret);
56
-        return 1;
29
+    // 检查输入参数
30
+    if (argc < 2) {
31
+        std::cerr << "Usage: " << argv[0] << " <input file>" << std::endl;
32
+        return -1;
57 33
     }
58 34
 
59
-    /*
60
-     * Setup AES-CCM contex
61
-     */
62
-    mbedtls_cipher_context_t ctx;
35
+    // 0. 注册所有的codecs
36
+    avcodec_register_all();
63 37
 
64
-    mbedtls_cipher_init(&ctx);
65
-
66
-    ret = mbedtls_cipher_setup(&ctx, mbedtls_cipher_info_from_type(MBEDTLS_CIPHER_AES_128_CCM));
67
-    if (ret != 0) {
68
-        printf("mbedtls_cipher_setup() returned -0x%04X\r\n", -ret);
69
-        return 1;
38
+    // 1. 创建一个AVCodecContext
39
+    AVCodec* codec;
40
+    AVCodecContext* codec_ctx;
41
+    codec = avcodec_find_decoder(AV_CODEC_ID_H264); // 假设视频是H.264编码
42
+    if (!codec) {
43
+        std::cerr << "Codec not found" << std::endl;
44
+        return -1;
70 45
     }
46
+    codec_ctx = avcodec_alloc_context3(codec);
71 47
 
72
-    ret = mbedtls_cipher_setkey(&ctx, secret_key, 8 * sizeof secret_key, MBEDTLS_ENCRYPT);
73
-    if (ret != 0) {
74
-        printf("mbedtls_cipher_setkey() returned -0x%04X\r\n", -ret);
75
-        return 1;
48
+    // 2. 打开codec
49
+    if (avcodec_open2(codec_ctx, codec, NULL) < 0) {
50
+        std::cerr << "Could not open codec" << std::endl;
51
+        return -1;
76 52
     }
77 53
 
78
-    /*
79
-     * Encrypt-authenticate the message and authenticate additional data
80
-     *
81
-     * First generate a random 8-byte nonce.
82
-     * Put it directly in the output buffer as the recipient will need it.
83
-     *
84
-     * Warning: you must never re-use the same (key, nonce) pair. One of the
85
-     * best ways to ensure this to use a counter for the nonce. However this
86
-     * means you should save the counter accross rebots, if the key is a
87
-     * long-term one. The alternative we choose here is to generate the nonce
88
-     * randomly. However it only works if you have a good source of
89
-     * randomness.
90
-     */
91
-    const size_t nonce_len = 8;
92
-    mbedtls_ctr_drbg_random(&drbg, ciphertext, nonce_len);
93
-
94
-    size_t ciphertext_len = 0;
95
-    /* Go for a conservative 16-byte (128-bit) tag
96
-     * and append it to the ciphertext */
97
-    const size_t tag_len = 16;
98
-    ret = mbedtls_cipher_auth_encrypt(&ctx, ciphertext, nonce_len,
99
-                                      (const unsigned char *) metadata, sizeof metadata,
100
-                                      (const unsigned char *) message, sizeof message,
101
-                                      ciphertext + nonce_len, &ciphertext_len,
102
-                                      ciphertext + nonce_len + sizeof message, tag_len );
103
-    if (ret != 0) {
104
-        printf("mbedtls_cipher_auth_encrypt() returned -0x%04X\r\n", -ret);
105
-        return 1;
54
+    // 3. 打开输入的视频文件
55
+    AVFormatContext* format_ctx = nullptr;
56
+    if (avformat_open_input(&format_ctx, argv[1], NULL, NULL) < 0) {
57
+        std::cerr << "Could not open input file" << std::endl;
58
+        return -1;
106 59
     }
107
-    ciphertext_len += nonce_len + tag_len;
108
-
109
-    /*
110
-     * The following information should now be transmitted:
111
-     * - first ciphertext_len bytes of ciphertext buffer
112
-     * - metadata if not already transmitted elsewhere
113
-     */
114
-    print_hex("ciphertext", ciphertext, ciphertext_len);
115
-
116
-    /*
117
-     * Decrypt-authenticate
118
-     */
119
-    unsigned char decrypted[128] = { 0 };
120
-    size_t decrypted_len = 0;
121
-
122
-    ret = mbedtls_cipher_setkey(&ctx, secret_key, 8 * sizeof secret_key, MBEDTLS_DECRYPT);
123
-    if (ret != 0) {
124
-        printf("mbedtls_cipher_setkey() returned -0x%04X\r\n", -ret);
125
-        return 1;
60
+
61
+    // 4. 检索流信息
62
+    if (avformat_find_stream_info(format_ctx, NULL) < 0) {
63
+        std::cerr << "Could not find stream information" << std::endl;
64
+        return -1;
126 65
     }
127 66
 
128
-    ret = mbedtls_cipher_auth_decrypt(&ctx,
129
-                                      ciphertext, nonce_len,
130
-                                      (const unsigned char *) metadata, sizeof metadata,
131
-                                      ciphertext + nonce_len, ciphertext_len - nonce_len - tag_len,
132
-                                      decrypted, &decrypted_len,
133
-                                      ciphertext + ciphertext_len - tag_len, tag_len );
134
-    /* Checking the return code is CRITICAL for security here */
135
-    if (ret == MBEDTLS_ERR_CIPHER_AUTH_FAILED) {
136
-        printf("Something bad is happening! Data is not authentic!\r\n");
137
-        return 1;
67
+    // 5. 找到视频流
68
+    int video_stream_idx = -1;
69
+    for (unsigned i = 0; i < format_ctx->nb_streams; i++) {
70
+        if (format_ctx->streams[i]->codecpar->codec_type == AVMEDIA_TYPE_VIDEO) {
71
+            video_stream_idx = i;
72
+            break;
73
+        }
138 74
     }
139
-    if (ret != 0) {
140
-        printf("mbedtls_cipher_authdecrypt() returned -0x%04X\r\n", -ret);
141
-        return 1;
75
+    if (video_stream_idx == -1) {
76
+        std::cerr << "Could not find a video stream" << std::endl;
77
+        return -1;
142 78
     }
143 79
 
144
-    print_hex("decrypted", decrypted, decrypted_len);
145
-
146
-    printf("\r\nDONE\r\n");
147
-
148
-    return 0;
149
-}
80
+    // 6. 创建一个AVPacket和AVFrame
81
+    AVPacket packet;
82
+    AVFrame* frame = av_frame_alloc();
150 83
 
151
-#if defined(TARGET_LIKE_MBED)
152
-
153
-#include "mbed-drivers/test_env.h"
154
-#include "minar/minar.h"
155
-
156
-static void run() {
157
-    MBED_HOSTTEST_TIMEOUT(10);
158
-    MBED_HOSTTEST_SELECT(default);
159
-    MBED_HOSTTEST_DESCRIPTION(mbed TLS example authcrypt);
160
-    MBED_HOSTTEST_START("MBEDTLS_EX_AUTHCRYPT");
161
-    MBED_HOSTTEST_RESULT(example() == 0);
162
-}
163
-
164
-void app_start(int, char*[]) {
165
-    /* Use 115200 bps for consistency with other examples */
166
-    get_stdio_serial().baud(115200);
167
-    minar::Scheduler::postCallback(mbed::util::FunctionPointer0<void>(run).bind());
168
-}
84
+    // 7. 循环读取数据包
85
+    int ret;
86
+    while (av_read_frame(format_ctx, &packet) >= 0) {
87
+        // 解码一个数据包
88
+        if (packet.stream_index == video_stream_idx) {
89
+            avcodec_decode_video2(codec_ctx, frame, &ret, &packet);
90
+            if (ret >= 0) {
91
+                // 处理解码后的帧
92
+                // 例如,保存帧到文件或显示
93
+            }
94
+        }
95
+        av_packet_unref(&packet);
96
+    }
169 97
 
170
-#else
98
+    // 8. 释放资源
99
+    av_frame_free(&frame);
100
+    avcodec_close(codec_ctx);
101
+    avformat_close_input(&format_ctx);
102
+    av_free(codec_ctx);
171 103
 
172
-int main() {
173
-    return example();
104
+    return 0;
174 105
 }
175 106
 
176
-#endif

+ 1 - 0
settings.gradle

@@ -1,5 +1,6 @@
1 1
 pluginManagement {
2 2
     repositories {
3
+        maven { url 'https://maven.aliyun.com/repository/public/' }
3 4
         google()
4 5
         mavenCentral()
5 6
         gradlePluginPortal()