We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9aad00c commit d2bcd17Copy full SHA for d2bcd17
vaapi_encoder.cpp
@@ -412,6 +412,7 @@ StatusCode VAAPIEncoder::DoOpen(HostBufferRef *p_pBuff)
412
413
m_codec->width = m_CommonProps.GetWidth();
414
m_codec->height = m_CommonProps.GetHeight();
415
+ printf("w %d h %d\n", m_codec->width, m_codec->height);
416
m_codec->time_base = av_make_q(m_CommonProps.GetFrameRateDen(), m_CommonProps.GetFrameRateNum());
417
m_codec->framerate = av_make_q(m_CommonProps.GetFrameRateNum(), m_CommonProps.GetFrameRateDen());
418
m_codec->sample_aspect_ratio = av_make_q(1, 1);
0 commit comments