HomeSort by relevance Sort by last modified time
    Searched refs:webm_ctx (Results 1 - 6 of 6) sorted by null

  /external/libvpx/libvpx/
webmdec.cc 21 void reset(struct WebmInputContext *const webm_ctx) {
22 if (webm_ctx->reader != NULL) {
24 reinterpret_cast<mkvparser::MkvReader *>(webm_ctx->reader);
27 if (webm_ctx->segment != NULL) {
29 reinterpret_cast<mkvparser::Segment *>(webm_ctx->segment);
32 if (webm_ctx->buffer != NULL) {
33 delete[] webm_ctx->buffer;
35 webm_ctx->reader = NULL;
36 webm_ctx->segment = NULL;
37 webm_ctx->buffer = NULL
    [all...]
webmdec.h 40 int file_is_webm(struct WebmInputContext *webm_ctx,
48 // webm_ctx - WebmInputContext object
55 int webm_read_frame(struct WebmInputContext *webm_ctx, uint8_t **buffer,
59 int webm_guess_framerate(struct WebmInputContext *webm_ctx,
63 void webm_free(struct WebmInputContext *webm_ctx);
webmenc.cc 23 void write_webm_file_header(struct WebmOutputContext *webm_ctx,
27 mkvmuxer::MkvWriter *const writer = new mkvmuxer::MkvWriter(webm_ctx->stream);
37 if (!webm_ctx->debug) {
63 if (webm_ctx->debug) {
66 webm_ctx->writer = writer;
67 webm_ctx->segment = segment;
70 void write_webm_block(struct WebmOutputContext *webm_ctx,
74 reinterpret_cast<mkvmuxer::Segment *>(webm_ctx->segment);
77 if (pts_ns <= webm_ctx->last_pts_ns) pts_ns = webm_ctx->last_pts_ns + 1000000
    [all...]
webmenc.h 40 void write_webm_file_header(struct WebmOutputContext *webm_ctx,
45 void write_webm_block(struct WebmOutputContext *webm_ctx,
49 void write_webm_file_footer(struct WebmOutputContext *webm_ctx);
vpxdec.c 47 struct WebmInputContext *webm_ctx; member in struct:VpxDecInputContext
251 return webm_read_frame(input->webm_ctx, buf, bytes_in_buffer);
551 struct WebmInputContext webm_ctx; local
552 memset(&(webm_ctx), 0, sizeof(webm_ctx));
553 input.webm_ctx = &webm_ctx;
687 else if (file_is_webm(input.webm_ctx, input.vpx_input_ctx))
722 if (webm_guess_framerate(input.webm_ctx, input.vpx_input_ctx)) {
    [all...]
vpxenc.c 868 struct WebmOutputContext webm_ctx; member in struct:stream_state
    [all...]

Completed in 571 milliseconds