HomeSort by relevance Sort by last modified time
    Searched full:seekable (Results 1 - 25 of 199) sorted by null

1 2 3 4 5 6 7 8

  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
multifile.py 24 If seekable is given as 0, the class code will not do the bookkeeping
27 seekable stream object.
41 seekable = 0 variable in class:MultiFile
43 def __init__(self, fp, seekable=1):
48 if seekable:
49 self.seekable = 1
105 if self.seekable:
129 if self.seekable:
137 if self.seekable:
150 if self.seekable
    [all...]
chunk.py 74 self.seekable = False
76 self.seekable = True
99 If the file is not seekable, this will result in an error.
104 if not self.seekable:
152 if self.seekable:
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
multifile.py 24 If seekable is given as 0, the class code will not do the bookkeeping
27 seekable stream object.
41 seekable = 0 variable in class:MultiFile
43 def __init__(self, fp, seekable=1):
48 if seekable:
49 self.seekable = 1
105 if self.seekable:
129 if self.seekable:
137 if self.seekable:
150 if self.seekable
    [all...]
chunk.py 74 self.seekable = False
76 self.seekable = True
99 If the file is not seekable, this will result in an error.
104 if not self.seekable:
152 if self.seekable:
  /external/libvorbis/doc/vorbisfile/
ov_seekable.html 20 <p>This indicates whether or not the bitstream is seekable.
44 <li>0 indicates that the file is not seekable.</li>
45 <li>nonzero indicates that the file is seekable.</li>
OggVorbis_File.html 69 int seekable;
74 /* If the FILE handle isn't seekable (eg, a pipe), only the current
115 <dt><i>seekable</i></dt>
116 <dd>Read-only int indicating whether file is seekable. E.g., a physical file is seekable, a pipe isn't.</dd>
ov_pcm_seek.html 20 <p>Seeks to the offset specified (in pcm samples) within the physical bitstream. This function only works for seekable streams.
55 <li>OV_ENOSEEK - Bitstream is not seekable.
ov_raw_seek.html 20 <p>Seeks to the offset specified (in compressed raw bytes) within the physical bitstream. This function only works for seekable streams.
54 <li>OV_ENOSEEK - Bitstream is not seekable.
ov_time_seek.html 20 <p>For seekable
54 <li>OV_ENOSEEK - Bitstream is not seekable.
fileinfo.html 41 <td>Indicates whether the bitstream is seekable.</td>
49 <td>Returns the total (compressed) bytes in a physical or logical seekable bitstream.</td>
53 <td>Returns the total number of samples in a physical or logical seekable bitstream.</td>
57 <td>Returns the total time length in seconds of a physical or logical seekable bitstream.</td>
ov_bitrate.html 20 <p>This function returns the average bitrate for the specified logical bitstream. This may be different from the <a href=ov_info.html>ov_info->nominal_bitrate</a> value, as it is based on the actual average for this bitstream if the file is seekable.
50 physical bitstream. If the file is open for random (seekable) access, it will
ov_pcm_seek_lap.html 41 <p>This function only works for seekable streams.
72 <li>OV_ENOSEEK - Bitstream is not seekable.
  /external/chromium_org/content/test/plugin/
plugin_delete_plugin_in_stream_test.h 23 NPBool seekable, uint16* stype) OVERRIDE;
plugin_execute_stream_javascript.h 23 NPBool seekable, uint16* stype) OVERRIDE;
plugin_get_javascript_url2_test.h 25 NPBool seekable, uint16* stype) OVERRIDE;
plugin_delete_plugin_in_stream_test.cc 35 NPBool seekable, uint16* stype) {
plugin_execute_stream_javascript.cc 20 NPBool seekable, uint16* stype) {
plugin_get_javascript_url_test.h 24 NPBool seekable, uint16* stype) OVERRIDE;
plugin_request_read_test.h 30 NPBool seekable, uint16* stream_type) OVERRIDE;
plugin_request_read_test.cc 40 NPBool seekable, uint16* stream_type) {
53 return PluginTest::NewStream(type, stream, seekable, stream_type);
  /frameworks/av/media/libstagefright/mpeg2ts/
MPEG2TSExtractor.cpp 43 bool seekable);
57 // will be seekable, otherwise the single stream will be seekable.
66 bool seekable)
69 mSeekable(seekable) {
127 bool seekable = true; local
136 seekable = false;
140 return new MPEG2TSSource(this, mSourceImpls.editItemAt(index), seekable);
  /external/chromium_org/content/child/npapi/
plugin_stream.h 66 // setter/getter for the seekable attribute on the stream.
67 bool seekable() const { return seekable_stream_; } function in class:content::PluginStream
69 void set_seekable(bool seekable) { seekable_stream_ = seekable; }
webplugin_resource_client.h 32 // is cleared. This applies for seekable streams.
  /external/chromium_org/third_party/WebKit/ManualTests/media-elements/
video-preload.html 36 else if (prop == "Max time seekable")
37 range = element.seekable;
76 ["Max time seekable", printTimeRangeValue]
211 <tr><td>Max time seekable</td><td id="Max time seekable"></td></tr>
  /external/chromium_org/third_party/npapi/npspy/
analyze_streams.py 28 self.seekable = split[3]
98 output.append(', '.join([stream.url, stream.mime_type, str(stream.size), stream.seekable]))

Completed in 720 milliseconds

1 2 3 4 5 6 7 8