Media (Intel® Video Processing Library, Intel Media SDK)
Access community support with transcoding, decoding, and encoding in applications using media tools like Intel® oneAPI Video Processing Library and Intel® Media SDK
Announcements
The Intel Media SDK project is no longer active. For continued support and access to new features, Intel Media SDK users are encouraged to read the transition guide on upgrading from Intel® Media SDK to Intel® Video Processing Library (VPL), and to move to VPL as soon as possible.
For more information, see the VPL website.
3058 Discussions

How can we add our biterate control algorithm to msdk?

david123456
Beginner
265 Views

We want encoding 30 programs into a H.264 DVB Transport Stream (constant biterate such as 38Mbps). The statistical multiplexing bitrate control algorithm is better for it. The biterate of each program varies with contents (VBR) and the sum of total biterates is constant (CBR). 30 programs share the constant biterate and each program can borrow or loan its biterate to others at real time.

 If media SDK is open source,  we can modify lookahead algorithm to adding look arround algorithm( to see other programs bitrate requirement at real time) to achieve stastistical multiplexing encoding for DVB TS.

 

 

0 Kudos
1 Reply
Surbhi_M_Intel
Employee
265 Views

Hi David, 

It's an interesting solution of statistical multiplexing the bitrate to share the constant bitrate i,e. 38Mbps among the 30 streams depending upon it's properties. As you know MSDK is not an open source algorithm so change it to look around algorithm. This is designed to keep single stream in mind. 

Another option you might want to explore is to use CQP mode by doing bitrate adjustment on a frame to frame to basis, this has MSDK API support. It won't be able to do look around algo, that is something you might have to write on top of it. 

Thanks,
Surbhi

0 Kudos
Reply