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

  /external/skia/src/codec/
SkWebpCodec.cpp 31 #include "webp/demux.h"
46 // Webp demux needs a contiguous data buffer.
58 // It's a little strange that the |demux| will outlive |webpData|, though it needs the
63 SkAutoTCallVProc<WebPDemuxer, WebPDemuxDelete> demux(WebPDemuxPartial(&webpData, &state));
73 SkASSERT(demux);
77 const int width = WebPDemuxGetI(demux, WEBP_FF_CANVAS_WIDTH);
78 const int height = WebPDemuxGetI(demux, WEBP_FF_CANVAS_HEIGHT);
94 if (WebPDemuxGetChunk(demux, "ICCP", 1, &chunkIterator)) {
106 if (WebPDemuxGetChunk(demux, "EXIF", 1, &chunkIterator)) {
114 if (!WebPDemuxGetFrame(demux, 1, &frame))
    [all...]
  /external/skqp/src/codec/
SkWebpCodec.cpp 31 #include "webp/demux.h"
46 // Webp demux needs a contiguous data buffer.
58 // It's a little strange that the |demux| will outlive |webpData|, though it needs the
63 SkAutoTCallVProc<WebPDemuxer, WebPDemuxDelete> demux(WebPDemuxPartial(&webpData, &state));
73 SkASSERT(demux);
77 const int width = WebPDemuxGetI(demux, WEBP_FF_CANVAS_WIDTH);
78 const int height = WebPDemuxGetI(demux, WEBP_FF_CANVAS_HEIGHT);
94 if (WebPDemuxGetChunk(demux, "ICCP", 1, &chunkIterator)) {
106 if (WebPDemuxGetChunk(demux, "EXIF", 1, &chunkIterator)) {
114 if (!WebPDemuxGetFrame(demux, 1, &frame))
    [all...]
  /frameworks/ex/framesequence/jni/
FrameSequence_webp.cpp 124 // Construct demux.
293 WebPDemuxer* demux = mFrameSequence.getDemuxer(); local
294 ALOG_ASSERT(demux, "Cannot drawFrame, mDemux is NULL");
316 int ok = WebPDemuxGetFrame(demux, start, &currIter); // Get frame number 'start - 1'.
327 ok = WebPDemuxGetFrame(demux, i + 1, &currIter); // Get ith frame.
366 ok = WebPDemuxGetFrame(demux, lastFrame + 1, &currIter);

Completed in 94 milliseconds