Skip to content

Commit

Permalink
Set proper end of object for the video frames
Browse files Browse the repository at this point in the history
Summary: A bug setting the end of object was (properly) triggering an error check in the MOQSession. This fixes the issue

Reviewed By: afrind

Differential Revision: D66414097

fbshipit-source-id: 9c0affe2808c61b46ef5d1cd85f529ee5e04074a
  • Loading branch information
jordicenzano authored and facebook-github-bot committed Nov 26, 2024
1 parent b1866ab commit 5f7624f
Showing 1 changed file with 1 addition and 5 deletions.
6 changes: 1 addition & 5 deletions moxygen/samples/flv_streamer_client/MoQFlvStreamerClient.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -183,11 +183,7 @@ class MoQFlvStreamerClient {
<< objPayload->computeChainDataLength();

moqClient_.moqSession_->publish(
objHeader,
subscribeID,
0,
std::move(objPayload),
false);
objHeader, subscribeID, 0, std::move(objPayload), true);
}
});

Expand Down

0 comments on commit 5f7624f

Please sign in to comment.