示例#1
0
    def peek_stream_info(data):
        info = vpx.vpx_codec_stream_info_alloc()

        VpxError.check(
            vpx.vpx_codec_peek_stream_info(vpx.vpx_codec_vp8_dx(), data, info))

        return info
示例#2
0
文件: pyvpx.py 项目: flier/pyvpx
    def peek_stream_info(data):
        info = vpx.vpx_codec_stream_info_alloc()

        VpxError.check(vpx.vpx_codec_peek_stream_info(vpx.vpx_codec_vp8_dx(), data, info))

        return info
示例#3
0
    def get_stream_info(self):
        info = vpx.vpx_codec_stream_info_alloc()

        VpxError.check(vpx.vpx_codec_get_stream_info(self.codec, info))

        return info
示例#4
0
文件: pyvpx.py 项目: flier/pyvpx
    def get_stream_info(self):
        info = vpx.vpx_codec_stream_info_alloc()

        VpxError.check(vpx.vpx_codec_get_stream_info(self.codec, info))

        return info