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:firstLumSrcY
(Results
1 - 2
of
2
) sorted by relevance
/third_party/ffmpeg/libswscale/
H
A
D
swscale.c
381
const int
firstLumSrcY
= FFMAX(1 - vLumFilterSize, vLumFilterPos[dstY]);
in swscale()
local
387
int lastLumSrcY = FFMIN(c->srcH,
firstLumSrcY
+ vLumFilterSize) - 1;
in swscale()
396
if (
firstLumSrcY
> lastInLumBuf) {
in swscale()
398
hasLumHoles = lastInLumBuf !=
firstLumSrcY
- 1;
in swscale()
400
hout_slice->plane[0].sliceY =
firstLumSrcY
;
in swscale()
401
hout_slice->plane[3].sliceY =
firstLumSrcY
;
in swscale()
406
lastInLumBuf =
firstLumSrcY
- 1;
in swscale()
423
firstLumSrcY
, lastLumSrcY, lastInLumBuf);
in swscale()
438
av_assert0((lastLumSrcY -
firstLumSrcY
+ 1) <= hout_slice->plane[0].available_lines);
in swscale()
444
firstPosY = FFMAX(
firstLumSrcY
, pos
in swscale()
[all...]
/third_party/ffmpeg/libswscale/x86/
H
A
D
swscale.c
86
const int
firstLumSrcY
= vLumFilterPos[dstY]; //First line needed as input
in ff_updateMMXDitherTables()
local
96
const int16_t **lumSrcPtr = (const int16_t **)(void*) lumPlane->line +
firstLumSrcY
- lumPlane->sliceY;
in ff_updateMMXDitherTables()
98
const int16_t **alpSrcPtr = (CONFIG_SWSCALE_ALPHA && hasAlpha) ? (const int16_t **)(void*) alpPlane->line +
firstLumSrcY
- alpPlane->sliceY : NULL;
in ff_updateMMXDitherTables()
101
if (
firstLumSrcY
< 0 ||
firstLumSrcY
+ vLumFilterSize > c->srcH) {
in ff_updateMMXDitherTables()
104
int neg = -
firstLumSrcY
, i, end = FFMIN(c->srcH -
firstLumSrcY
, vLumFilterSize);
in ff_updateMMXDitherTables()
Completed in 3 milliseconds