Skip to content

Commit

Permalink
make decode codec backward compatible even if it was unused
Browse files Browse the repository at this point in the history
  • Loading branch information
thesyncim committed Oct 24, 2024
1 parent 48a9085 commit 1d8326f
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion generate.sh
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ export PATH=/opt/.protoc/bin:$PWD/.protoc/bin:$PATH
# The coreutils installed with Homebrew (as mentioned in README)
# installs GNU realpath which could be available as "grealpath"
# which actually works. Hence, the option to customize REALPATH
REALPATH=${REALPATH:-realpath}
REALPATH=${REALPATH:-grealpath}

GEN_PROFILE=${1:-go}

Expand Down
6 changes: 3 additions & 3 deletions protobuf/video/sfu/models/models.proto
Original file line number Diff line number Diff line change
Expand Up @@ -110,9 +110,9 @@ message VideoLayer {


message Codec {
string mime_type = 1;
string scalability_mode = 2;
string fmtp = 3;
string mime_type = 10;
string scalability_mode = 11;
string fmtp = 12;
}

message ICETrickle {
Expand Down

0 comments on commit 1d8326f

Please sign in to comment.