remove the b_low_latency_ from the RocVideoDecoder class (#111)

[ROCm/rocdecode commit: e001d78859]
This commit is contained in:
Aryan Salmanpour
2023-11-30 22:09:13 -05:00
کامیت شده توسط GitHub
والد 10545bcd94
کامیت 88dd09c011
7فایلهای تغییر یافته به همراه10 افزوده شده و 14 حذف شده
@@ -168,7 +168,7 @@ int main(int argc, char **argv) {
std::unique_ptr<VideoDemuxer> demuxer(new VideoDemuxer(input_file_path.c_str()));
rocDecVideoCodec rocdec_codec_id = AVCodec2RocDecVideoCodec(demuxer->GetCodecID());
v_device_id[i] = (i % 2 == 0) ? 0 : sd;
std::unique_ptr<RocVideoDecoder> dec(new RocVideoDecoder(v_device_id[i], mem_type, rocdec_codec_id, false, b_force_zero_latency, p_crop_rect));
std::unique_ptr<RocVideoDecoder> dec(new RocVideoDecoder(v_device_id[i], mem_type, rocdec_codec_id, b_force_zero_latency, p_crop_rect));
v_demuxer.push_back(std::move(demuxer));
v_viddec.push_back(std::move(dec));
}