Skip to content

Commit

Permalink
Fixing FQPN
Browse files Browse the repository at this point in the history
  • Loading branch information
Noctunus committed Sep 24, 2024
1 parent e4d59bc commit b8c2f9c
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions proto/cmp/types/v2/file.proto
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ message File {

message Image {
// file
File file = 1;
cmp.types.v2.File file = 1;

// Width
int32 width = 2;
Expand All @@ -31,15 +31,15 @@ message Image {
string category = 6;

// Image type
ImageType type = 7;
cmp.types.v2.ImageType type = 7;
}

message Video {
// File
File file = 1;
cmp.types.v2.File file = 1;

// Codec of video
Codec codec = 2;
cmp.types.v2.Codec codec = 2;

// Bitrate in kbps
int32 bitrate = 3;
Expand All @@ -53,7 +53,7 @@ message Video {
int32 height = 6;

// Container format. Ex: "MP4"
VideoFormat format = 7;
cmp.types.v2.VideoFormat format = 7;

// Category
string category = 8;
Expand Down

0 comments on commit b8c2f9c

Please sign in to comment.