Skip to content

Commit

Permalink
Fix default value for max NAL unit size for H.265
Browse files Browse the repository at this point in the history
Was using the H.264 size.
  • Loading branch information
nickexton authored Jan 18, 2024
1 parent a678684 commit 738e51c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/nal_transport.c
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ static int send_fu(
SmolRTSP_NalTransportConfig SmolRTSP_NalTransportConfig_default(void) {
return (SmolRTSP_NalTransportConfig){
.max_h264_nalu_size = SMOLRTSP_MAX_H264_NALU_SIZE,
.max_h265_nalu_size = SMOLRTSP_MAX_H264_NALU_SIZE,
.max_h265_nalu_size = SMOLRTSP_MAX_H265_NALU_SIZE,
};
}

Expand Down

0 comments on commit 738e51c

Please sign in to comment.