OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:AVCENC_SUCCESS
(Results
1 - 11
of
11
) sorted by null
/frameworks/av/media/libstagefright/codecs/avc/enc/src/
bitstream_io.cpp
32
/* Return :
AVCENC_SUCCESS
if successed, AVCENC_FAIL if failed. */
69
return
AVCENC_SUCCESS
;
78
/* Return :
AVCENC_SUCCESS
if successed, AVCENC_WRITE_FAIL if buffer is */
93
if (
AVCENC_SUCCESS
!= AVCBitstreamUseOverrunBuffer(stream, (num_bits >> 3) + 2))
130
return
AVCENC_SUCCESS
;
138
/* Return :
AVCENC_SUCCESS
if successed, AVCENC_WRITE_FAIL if buffer is */
144
AVCEnc_Status status =
AVCENC_SUCCESS
;
190
/* Return :
AVCENC_SUCCESS
if successed, AVCENC_WRITE_FAIL if buffer is */
211
return
AVCENC_SUCCESS
;
220
/* Return :
AVCENC_SUCCESS
if successed, AVCENC_WRITE_FAIL if buffer is *
[
all
...]
avcenc_api.cpp
26
/* Return :
AVCENC_SUCCESS
if succeed, AVCENC_FAIL if fail. */
40
return
AVCENC_SUCCESS
;
53
/* Return :
AVCENC_SUCCESS
for success. */
145
if (status !=
AVCENC_SUCCESS
)
204
if (
AVCENC_SUCCESS
!= InitMotionSearchModule(avcHandle))
209
if (
AVCENC_SUCCESS
!= InitRateControlModule(avcHandle))
241
return
AVCENC_SUCCESS
;
250
/* Return :
AVCENC_SUCCESS
for success. */
265
return
AVCENC_SUCCESS
;
273
/* Return :
AVCENC_SUCCESS
for success. *
[
all
...]
vlc_encode.cpp
24
if (
AVCENC_SUCCESS
!= SetEGBitstring(bitstream, codeNum))
27
return
AVCENC_SUCCESS
;
150
AVCEnc_Status status =
AVCENC_SUCCESS
;
204
AVCEnc_Status status =
AVCENC_SUCCESS
;
header.cpp
31
AVCEnc_Status status =
AVCENC_SUCCESS
;
41
if (status !=
AVCENC_SUCCESS
) /* we can check after each write also */
50
if (status !=
AVCENC_SUCCESS
)
71
if (status !=
AVCENC_SUCCESS
)
81
if (status !=
AVCENC_SUCCESS
)
96
if (status !=
AVCENC_SUCCESS
)
230
AVCEnc_Status status =
AVCENC_SUCCESS
;
239
if (status !=
AVCENC_SUCCESS
)
288
if (status !=
AVCENC_SUCCESS
)
297
if (status !=
AVCENC_SUCCESS
)
[
all
...]
residual.cpp
22
AVCEnc_Status status =
AVCENC_SUCCESS
;
74
if (status !=
AVCENC_SUCCESS
) /* check only once per line */
108
if (status !=
AVCENC_SUCCESS
) /* check only once per line */
147
AVCEnc_Status status =
AVCENC_SUCCESS
;
355
if (status !=
AVCENC_SUCCESS
) /* occasionally check the bitstream */
slice.cpp
23
AVCEnc_Status status =
AVCENC_SUCCESS
;
90
if (status !=
AVCENC_SUCCESS
)
129
status =
AVCENC_SUCCESS
;
155
AVCEnc_Status status =
AVCENC_SUCCESS
;
427
if (status !=
AVCENC_SUCCESS
)
443
if (status !=
AVCENC_SUCCESS
)
459
if (status !=
AVCENC_SUCCESS
)
474
if (status !=
AVCENC_SUCCESS
)
490
if (status !=
AVCENC_SUCCESS
)
552
AVCEnc_Status status =
AVCENC_SUCCESS
;
[
all
...]
init.cpp
554
if (status !=
AVCENC_SUCCESS
)
560
if (status !=
AVCENC_SUCCESS
)
565
return
AVCENC_SUCCESS
;
572
AVCEnc_Status status =
AVCENC_SUCCESS
;
696
return
AVCENC_SUCCESS
;
764
if (status !=
AVCENC_SUCCESS
) /* incorrigable fail */
775
AVCMotionEstimation(encvid); /*
AVCENC_SUCCESS
or AVCENC_NEW_IDR */
798
return
AVCENC_SUCCESS
;
[
all
...]
avcenc_api.h
81
AVCENC_SUCCESS
= AVC_SUCCESS,
192
\return "
AVCENC_SUCCESS
for success,
209
\return "
AVCENC_SUCCESS
for success, AVCENC_UNINITIALIZED when level is not known.
222
\return "
AVCENC_SUCCESS
for success,
244
\return "
AVCENC_SUCCESS
for success of encoding one slice,
256
\return "
AVCENC_SUCCESS
if success, AVCENC_FAIL otherwise."
274
\return "
AVCENC_SUCCESS
for success, AVCENC_NO_PICTURE if no picture to be outputted."
286
\return "
AVCENC_SUCCESS
for success, AVCENC_FAIL for fail for id not found."
rate_control.cpp
78
return
AVCENC_SUCCESS
;
137
return
AVCENC_SUCCESS
;
283
return
AVCENC_SUCCESS
;
796
AVCEnc_Status status =
AVCENC_SUCCESS
;
[
all
...]
motion_est.cpp
169
return
AVCENC_SUCCESS
;
925
return
AVCENC_SUCCESS
;
945
return
AVCENC_SUCCESS
;
[
all
...]
/frameworks/av/media/libstagefright/codecs/avc/enc/
SoftAVCEncoder.cpp
321
if (err !=
AVCENC_SUCCESS
) {
751
AVCEnc_Status encoderStatus =
AVCENC_SUCCESS
;
845
if (encoderStatus ==
AVCENC_SUCCESS
|| encoderStatus == AVCENC_NEW_IDR) {
852
if (encoderStatus <
AVCENC_SUCCESS
) {
871
CHECK(encoderStatus ==
AVCENC_SUCCESS
|| encoderStatus == AVCENC_NEW_IDR);
875
if (encoderStatus ==
AVCENC_SUCCESS
) {
885
if (PVAVCEncGetRecon(mHandle, &recon) ==
AVCENC_SUCCESS
) {
893
if (encoderStatus <
AVCENC_SUCCESS
) {
[
all
...]
Completed in 72 milliseconds