Searched defs:end (Results 1 - 25 of 230) sorted by path

12345678910

/frameworks/av/camera/
H A DCameraParameters.cpp295 char *end; local
296 int w = (int)strtol(str, &end, 10);
298 if (*end != delim) {
304 int h = (int)strtol(end+1, &end, 10);
310 *endptr = end;
/frameworks/av/cmds/stagefright/
H A Drecordvideo.cpp300 int64_t end = systemTime(); local
309 fprintf(stderr, "encoding %d frames in %lld us\n", nFrames, (end-start)/1000);
310 fprintf(stderr, "encoding speed is: %.2f fps\n", (nFrames * 1E9) / (end-start));
H A Dstagefright.cpp358 printf("seeking past the end now.");
717 char *end; local
718 long x = strtol(optarg, &end, 10);
720 if (*end != '\0' || end == optarg || x <= 0) {
905 it != list.end(); ++it) {
908 itRoles != (*it).mRoles.end() ; ++itRoles) {
987 char *end; local
988 long sampleRate = strtol(filename + 5, &end, 10);
990 if (end
[all...]
/frameworks/av/libvideoeditor/lvpp/
H A DVideoEditorSRC.cpp266 uint8_t* end = (uint8_t*)mBuffer->data() + mBuffer->range_offset() local
268 memcpy((uint8_t*)pBuffer->raw + done, end - mLeftover, todo);
/frameworks/av/media/libmedia/
H A DMetadata.cpp73 const size_t end = mData->dataPosition(); local
76 mData->writeInt32(end - mBegin);
77 mData->setDataPosition(end);
/frameworks/av/media/libmediaplayerservice/
H A DStagefrightRecorder.cpp264 char *end; local
269 *val = strtoll(s, &end, 10);
271 if (end == s || errno == ERANGE) {
276 while (isspace(*end)) {
277 ++end;
283 return *end == '\0';
720 break; // Reaches the end
1498 // Audio source is added at the end if it exists.
/frameworks/av/media/libstagefright/codecs/avc/enc/src/
H A Davcenc_int.h284 dataPointArray *end; /*quantization levels for the past (20) frames */ member in struct:tagAVCRateControl
/frameworks/av/media/libstagefright/codecs/m4v_h263/enc/src/
H A Ddct.cpp1212 UChar *end; local
1217 end = pred + (16 << 3);
1231 while (pred < end) ;
1249 UChar *end; local
1255 end = cur + (width << 3);
1272 while (cur < end) ;
H A Dfastcodemb.cpp532 UChar *end = cur + (width << 3); local
575 while ((UInt)curInt < (UInt)end);
597 UChar *end = cur + (width << 3); local
614 while ((UInt)curInt < (UInt)end);
H A Dmotion_comp.cpp1946 UChar *end; local
1953 end = prev + (lx << 3);
1962 while ((UInt)src < (UInt)end);
H A Dmp4enc_api.cpp1630 /* Modify the intialize flag at the end.*/
1642 /* Purpose : Enter a video frame and perform front-end time check plus ME */
1955 /* Modify the intialize flag at the end.*/
2962 Int i, j, start, end; local
3197 end = index;
3203 end = index;
3208 for (i = start; i <= end; i++)
3217 if (i > end) return PV_FALSE;
3262 } /* end of: if(nLayers == 1) */
H A Drate_control.h64 dataPointArray *end; /*quantization levels for the past (20) frames */ member in struct:__anon663
H A Dvlc_encode_inline.h26 UInt end, match; local
33 end = 1;
35 end = 1 << (32 - nc);
37 while (match >= end)
73 end = 1 << (32 - nc);
74 while (match >= end)
117 UInt end, match; local
135 mov end, #0x80000000 local
136 mov end, end, ls local
176 mov end, #0x80000000 local
177 mov end, end, lsr run /* mask*/ local
231 UInt end = 0, match; local
[all...]
/frameworks/av/media/libstagefright/httplive/
H A DLiveSession.cpp388 char *end; local
389 long maxBw = strtoul(value, &end, 10);
390 if (end > value && *end == '\0') {
H A DM3UParser.cpp333 ssize_t end = line.find(",", offset); local
334 if (end < 0) {
335 end = line.size();
338 AString attr(line, offset, end - offset);
341 offset = end + 1;
358 char *end; local
359 unsigned long x = strtoul(s, &end, 10);
361 if (end == s || *end != '\0') {
411 ssize_t end local
490 char *end; local
516 char *end; local
530 char *end; local
[all...]
/frameworks/av/media/libstagefright/omx/tests/
H A DOMXHarness.cpp128 while (it != mMessageQueue.end()) {
628 // 5% chance of seeking beyond end of stream.
759 it != componentInfos.end(); ++it) {
768 role_it != info.mRoles.end(); ++role_it) {
814 char *end; local
815 unsigned long x = strtoul(optarg, &end, 10);
817 if (*end != '\0' || end == optarg) {
/frameworks/av/media/libstagefright/rtsp/
H A DAMPEG4ElementaryAssembler.cpp77 char *end; local
78 unsigned y = strtoul(s, &end, 10);
80 if (end == s || *end != '\0') {
216 while (it != queue->end()) {
342 it != headers.end(); ++it) {
H A DAPacketSource.cpp133 size_t end = (commaPos < 0) ? val.size() : commaPos; local
135 AString nalString(val, start, end - start);
266 char *end; local
267 objectType = strtoul(s, &end, 10);
268 CHECK(end > s && *end == '\0');
H A DARTPSession.cpp218 char *end; local
219 unsigned long x = strtoul(portString.c_str(), &end, 10);
220 if (end == portString.c_str() || *end != '\0') {
H A DARTSPConnection.cpp815 char *end; local
816 *x = strtoul(from, &end, 10);
818 if (end == from || *end != '\0') {
H A DASessionDescription.cpp207 char *end; local
208 unsigned long x = strtoul(lastSpacePos + 1, &end, 10);
209 CHECK_GT(end, lastSpacePos + 1);
210 CHECK_EQ(*end, '\0');
239 char *end; local
240 *width = strtoul(s, &end, 10);
241 CHECK_GT(end, s);
242 CHECK_EQ(*end, '-');
244 s = end + 1;
245 *height = strtoul(s, &end, 1
283 char *end; local
312 char *end; local
[all...]
H A DMyHandler.h46 // stream has ended and signal end of stream.
526 char *end; local
528 strtoul(timeoutStr.c_str(), &end, 10);
530 if (end == timeoutStr.c_str() || *end != '\0') {
1125 it != streamInfos.end(); ++it) {
1140 char *end; local
1141 unsigned long seq = strtoul(val.c_str(), &end, 10);
1149 uint32_t rtpTime = strtoul(val.c_str(), &end, 10);
/frameworks/av/media/libstagefright/wifi-display/
H A DParsedMessage.cpp69 char *end; local
70 *value = strtol(stringValue.c_str(), &end, 10);
72 if (end == stringValue.c_str() || *end != '\0') {
153 // Found the end of headers.
195 char *end; local
196 *statusCode = strtol(statusCodeString.c_str(), &end, 10);
198 if (*end != '\0' || end == statusCodeString.c_str()
272 char *end; local
[all...]
/frameworks/av/media/libstagefright/wifi-display/sink/
H A DWifiDisplaySink.cpp103 char *end; local
104 unsigned long x = strtoul(colonPos + 1, &end, 10);
106 if (end == colonPos + 1 || *end != '\0' || x >= 65536) {
/frameworks/av/media/libstagefright/wifi-display/source/
H A DConverter.cpp100 char *end; local
101 unsigned long x = strtoul(val, &end, 10);
103 if (*end == '\0' && end > val && x > 0) {
200 const uint8_t *end = ptr + accessUnit->size(); local
201 while (ptr < end) {

Completed in 187 milliseconds

12345678910