is it possible to trigger the encoder to send i-frames when using a surface as the input ? I know its possible when when queuing input buffers, but I didnt find a way to do so when using createInputSurface .
相关问题
- How can I create this custom Bottom Navigation on
- Bottom Navigation View gets Shrink Down
- How to make that the snackbar action button be sho
- Listening to outgoing sms not working android
- How to create Circular view on android wear?
相关文章
- android开发 怎么把图片放入drawable的文件夹下
- android上如何获取/storage/emulated/下的文件列表
- androidStudio有个箭头不认识
- SQLite不能创建表
- Windows - Android SDK manager not listing any plat
- Animate Recycler View grid when number of columns
- Why is the app closing suddenly without showing an
- Android OverlayItem.setMarker(): Change the marker
You can't set flags on the buffers. This also affects
BUFFER_FLAG_END_OF_STREAM
, but for that you have thesignalEndOfInputStream()
call.I frames will be sent every
KEY_FRAME_RATE * KEY_I_FRAME_INTERVAL
buffers. (I don't know how firm that is -- I suspect they might appear more or less often in practice.)