Home
Sort by
last modified time
|
relevance
|
path
Repository(s)
applications
arkcompiler
base
build
commonlibrary
developtools
device
docs
domains
drivers
foundation
ide
interface
kernel
napi_generator
productdefine
test
third_party
vendor
select all
invert selection
clear
Full Search
Search through all text tokens(words,strings,identifiers,numbers) in index.
Definition
Only finds symbol definitions(where e.g a variable(function,...) is defined).
Symbol
Only finds symbol(e.g. methods classes,function,variables).
File Path
Path of the source file(use "/").If you want just exact path,enclose it in "".Source files end with: .jar/.bz2/.a/.h/.java...
History
History log comments.
Type
Any
Bzip(2)
C
Clojure
C#
C++
ELF
Erlang
Image file
Fortran
Golang
GZIP
Haskell
Jar
Java
Java class
JavaScript
Lisp
Lua
Pascal
Perl
PHP
Plain Text
PL/SQL
Python
Rust
Scala
Shell script
SQL
Tar
Tcl
Troff
UUEncoded
Visual Basic
XML
Zip
Type of analyzer used to filter file types include with selected(e.g. just C sources).
Help
Searched
refs:jpgframe
(Results
1 - 3
of
3
) sorted by relevance
/third_party/ffmpeg/libavcodec/
H
A
D
cri.c
42
AVFrame *
jpgframe
; // decoded JPEG tile
member
57
s->
jpgframe
= av_frame_alloc();
in cri_decode_init()
58
if (!s->
jpgframe
)
in cri_decode_init()
362
ret = avcodec_receive_frame(s->jpeg_avctx, s->
jpgframe
);
in cri_decode_frame()
363
if (ret < 0 || s->
jpgframe
->format != AV_PIX_FMT_GRAY16 ||
in cri_decode_frame()
383
const int hw = s->
jpgframe
->width / 2;
in cri_decode_frame()
385
const uint16_t *src = (const uint16_t *)(s->
jpgframe
->data[0] + y * s->
jpgframe
->linesize[0]);
in cri_decode_frame()
393
av_frame_unref(s->
jpgframe
);
in cri_decode_frame()
419
av_frame_free(&s->
jpgframe
);
in cri_decode_close()
[all...]
H
A
D
tdsc.c
58
AVFrame *
jpgframe
; // decoded JPEG tile
member
84
av_frame_free(&ctx->
jpgframe
);
in tdsc_close()
116
ctx->
jpgframe
= av_frame_alloc();
in tdsc_init()
118
if (!ctx->refframe || !ctx->
jpgframe
|| !ctx->jpkt)
in tdsc_init()
362
ret = avcodec_receive_frame(ctx->jpeg_avctx, ctx->
jpgframe
);
in tdsc_decode_jpeg_tile()
363
if (ret < 0 || ctx->
jpgframe
->format != AV_PIX_FMT_YUVJ420P) {
in tdsc_decode_jpeg_tile()
377
ctx->
jpgframe
->data[0], ctx->
jpgframe
->linesize[0],
in tdsc_decode_jpeg_tile()
378
ctx->
jpgframe
->data[1], ctx->
jpgframe
in tdsc_decode_jpeg_tile()
[all...]
H
A
D
tiff.c
64
AVFrame *
jpgframe
; // decoded JPEG tile
member
665
ret = avcodec_receive_frame(s->avctx_mjpeg, s->
jpgframe
);
in dng_decode_jpeg()
678
/* Copy the outputted tile's pixels from '
jpgframe
' to 'frame' (final buffer) */
in dng_decode_jpeg()
680
if (s->
jpgframe
->width != s->avctx_mjpeg->width ||
in dng_decode_jpeg()
681
s->
jpgframe
->height != s->avctx_mjpeg->height ||
in dng_decode_jpeg()
682
s->
jpgframe
->format != s->avctx_mjpeg->pix_fmt)
in dng_decode_jpeg()
702
av_frame_unref(s->
jpgframe
);
in dng_decode_jpeg()
708
src_data = s->
jpgframe
->data[0];
in dng_decode_jpeg()
714
s->
jpgframe
->linesize[0] / pixel_size,
in dng_decode_jpeg()
720
av_frame_unref(s->
jpgframe
);
in dng_decode_jpeg()
[all...]
Completed in 4 milliseconds