Searched refs:next_input (Results 1 - 3 of 3) sorted by relevance
/third_party/ffmpeg/libavdevice/ |
H A D | alldevices.c | 69 static const void *next_input(const AVInputFormat *prev, AVClassCategory c2) in next_input() function 123 return next_input(d, AV_CLASS_CATEGORY_DEVICE_AUDIO_INPUT); in av_input_audio_device_next() 128 return next_input(d, AV_CLASS_CATEGORY_DEVICE_VIDEO_INPUT); in av_input_video_device_next()
|
/third_party/python/Modules/_io/ |
H A D | textio.c | 673 /* snapshot is either NULL, or a tuple (dec_flags, next_input) where 675 * next_input is the chunk of input bytes that comes next after the 1867 PyObject *next_input = dec_buffer; in textiowrapper_read_chunk() local 1868 PyBytes_Concat(&next_input, input_chunk); in textiowrapper_read_chunk() 1870 if (next_input == NULL) { in textiowrapper_read_chunk() 1873 PyObject *snapshot = Py_BuildValue("NN", dec_flags, next_input); in textiowrapper_read_chunk() 2623 PyObject *next_input; in _io_TextIOWrapper_tell_impl() local 2671 if (!PyArg_ParseTuple(self->snapshot, "iO", &cookie.dec_flags, &next_input)) in _io_TextIOWrapper_tell_impl() 2674 assert (PyBytes_Check(next_input)); in _io_TextIOWrapper_tell_impl() 2676 cookie.start_pos -= PyBytes_GET_SIZE(next_input); in _io_TextIOWrapper_tell_impl() [all...] |
/third_party/python/Lib/ |
H A D | _pyio.py | 2085 # self._snapshot is either None, or a tuple (dec_flags, next_input) 2087 # and next_input is the chunk of input bytes that comes next after the 2353 dec_flags, next_input = self._snapshot 2354 position -= len(next_input) 2375 assert skip_bytes <= len(next_input) 2379 n = len(decoder.decode(next_input[:skip_bytes])) 2413 for i in range(skip_bytes, len(next_input)): 2415 chars_decoded += len(decoder.decode(next_input[i:i+1]))
|
Completed in 8 milliseconds