Skip to content

Commit

Permalink
h265: fix decoding pps
Browse files Browse the repository at this point in the history
  • Loading branch information
mpromonet committed Nov 16, 2023
1 parent d0bef6c commit 093e8b2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion inc/VideoDecoder.h
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ class VideoDecoder : public rtc::VideoSourceInterface<webrtc::VideoFrame>, publi
std::vector<uint8_t> sps = extractParameters(spsstr);
frames.push_back(sps);

std::string ppsstr(spropvps+strlen(pattern));
std::string ppsstr(sproppps+strlen(pattern));
std::vector<uint8_t> pps = extractParameters(ppsstr);
frames.push_back(pps);
}
Expand Down

0 comments on commit 093e8b2

Please sign in to comment.