Replies: 4 comments
-
|
Close the issue temporarily until someone brings it up again ! |
Beta Was this translation helpful? Give feedback.
-
|
It's hard to tell without the actual .h264 file. I recommend to download a H264 Analyzer and look at your stream. Posting the code you used would be good, too. |
Beta Was this translation helpful? Give feedback.
-
|
With decoder_ref.raw_api.decode_frame2, there is no problem with decoding. impl DecoderConfig
pub fn e_videobstype(mut self, e_videobstype: openh264_sys2::VIDEO_BITSTREAM_TYPE) -> Self {
self.params.sVideoProperty.eVideoBsType = e_videobstype;
self
}
pub fn e_ecactiveidc(mut self, e_ecactiveidc: ERROR_CON_IDC) -> Self {
self.params.eEcActiveIdc = e_ecactiveidc;
self
} |
Beta Was this translation helpful? Give feedback.
-
|
Generally yes. This might require some verification wrt what these parameters do, but feel free to file a PR. |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
-
Only the first frame decoded successfully, subsequent frames failed, probably what is the reason?
Does it have something to do with initialization Settings or capacity?
It is worth mentioning that all frames can be successfully decoded with other openh264 wrappers.
In addition, can you set some parameters for initialization?
I hope to align with other openh264 wrapper libraries to further find out why.
Beta Was this translation helpful? Give feedback.
All reactions