app-starlock/lib/talk/starChart/proto/talk_data_h264_frame.proto
2025-02-21 15:55:35 +08:00

21 lines
446 B
Protocol Buffer
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

syntax = "proto3";
package main;
option go_package = "./spb/talk";
message TalkDataH264Frame {
// 帧序号 seq
uint32 FrameSeq = 1;
// 帧类型对于H264I帧、P帧
// 未知为NONE有时候发送方不知道或者渲染方可以从帧数据中解析
enum FrameTypeE {
NONE = 0;
I = 1;
P = 2;
};
FrameTypeE FrameType = 2;
// 帧数据
bytes FrameData = 3;
// 帧序号I
uint32 FrameSeqI = 4;
}