HomeSort by relevance Sort by last modified time
    Searched defs:caps (Results 1 - 25 of 80) sorted by null

1 2 3 4

  /external/bluetooth/bluez/audio/
gstbluetooth.c 48 GstCaps *caps; local
64 caps = gst_sbc_parse_caps_from_sbc(&sbc);
65 gst_type_find_suggest(tf, GST_TYPE_FIND_POSSIBLE, caps);
66 gst_caps_unref(caps);
gstsbcdec.c 83 GstCaps *caps; local
99 /* we will reuse the same caps object */
101 caps = gst_caps_new_simple("audio/x-raw-int",
112 dec->outcaps = gst_caps_intersect(caps,
115 gst_caps_unref(caps);
gsta2dpsink.c 72 static gboolean gst_a2dp_sink_set_caps(GstPad *pad, GstCaps *caps);
247 /* the getcaps of our ghostpad must reflect the device caps */
404 GstCaps *caps; local
410 "returning template caps");
411 caps = gst_static_pad_template_get_caps(
414 GST_LOG_OBJECT(self, "Getting device caps");
415 caps = gst_a2dp_sink_get_device_caps(self);
416 if (caps == NULL)
417 caps = gst_static_pad_template_get_caps(
420 caps_aux = gst_caps_copy(caps);
    [all...]
gstsbcutil.c 290 GstCaps *caps; local
296 caps = gst_caps_new_simple("audio/x-sbc",
310 return caps;
321 GstCaps *gst_sbc_util_caps_fixate(GstCaps *caps, gchar **error_message)
333 structure = gst_caps_get_structure(caps, 0);
482 gboolean gst_sbc_util_fill_sbc_params(sbc_t *sbc, GstCaps *caps)
489 g_assert(gst_caps_is_fixed(caps));
491 structure = gst_caps_get_structure(caps, 0);
  /external/webkit/Source/WebCore/platform/graphics/gstreamer/
ImageGStreamerCairo.cpp 33 GstCaps* caps = gst_buffer_get_caps(buffer); local
35 if (!gst_video_format_parse_caps(caps, &format, &width, &height)) {
36 gst_caps_unref(caps);
40 gst_caps_unref(caps);
ImageGStreamerQt.cpp 32 GstCaps* caps = gst_buffer_get_caps(buffer); local
34 if (!gst_video_format_parse_caps(caps, &format, &width, &height)) {
35 gst_caps_unref(caps);
39 gst_caps_unref(caps);
VideoSinkGStreamer.cpp 152 // For the unlikely case where the buffer has no caps, the caps
153 // are implicitely the caps of the pad. This shouldn't happen.
159 GstCaps *caps = GST_BUFFER_CAPS(buffer); local
162 if (G_UNLIKELY(!gst_video_format_parse_caps(caps, &format, &width, &height))) {
  /external/chromium/third_party/libjingle/source/talk/examples/call/
presenceouttask.cc 120 std::string caps; local
121 caps.append(s.phone_capability() ? "voice-v1" : "");
122 caps.append(s.pmuc_capability() ? " pmuc-v1" : "");
123 caps.append(s.video_capability() ? " video-v1" : "");
124 caps.append(s.camera_capability() ? " camera-v1" : "");
126 result->AddAttr(QN_EXT, caps, 1);
presencepushtask.cc 182 const XmlElement * caps = stanza->FirstNamed(QN_CAPS_C); local
183 if (caps != NULL) {
184 std::string node = caps->Attr(QN_NODE);
185 std::string ver = caps->Attr(QN_VER);
186 std::string exts = caps->Attr(QN_EXT);
  /external/qemu/android/
charmap.h 22 unsigned short caps; member in struct:AKeyEntry
  /external/quake/quake/src/QW/client/
snd_linux.c 27 int caps; local
50 if (ioctl(audio_fd, SNDCTL_DSP_GETCAPS, &caps)==-1)
58 if (!(caps & DSP_CAP_TRIGGER) || !(caps & DSP_CAP_MMAP))
  /external/quake/quake/src/WinQuake/
snd_linux.cpp 46 int caps; local
69 if (ioctl(audio_fd, SNDCTL_DSP_GETCAPS, &caps)==-1)
77 if (!(caps & DSP_CAP_TRIGGER) || !(caps & DSP_CAP_MMAP))
snd_sun.cpp 55 int caps; local
  /external/qemu/distrib/sdl-1.2.12/src/video/photon/
SDL_phyuv_c.h 38 PgScalerCaps_t caps; member in struct:private_yuvhwdata
  /external/wpa_supplicant_8/wpa_supplicant/
bss.h 38 * @caps: capability information field in host byte order
62 u16 caps; member in struct:wpa_bss
  /development/tools/emulator/opengl/host/libs/libOpenglRender/
FBConfig.cpp 70 const FrameBufferCaps &caps = fb->getCaps(); local
WindowSurface.cpp 62 const FrameBufferCaps &caps = fb->getCaps(); local
285 const FrameBufferCaps &caps = fb->getCaps(); local
  /external/chromium/base/
time_win_unittest.cc 139 TIMECAPS caps; local
140 MMRESULT status = timeGetDevCaps(&caps, sizeof(caps));
147 EXPECT_GE(static_cast<int>(caps.wPeriodMin), 1);
148 EXPECT_GT(static_cast<int>(caps.wPeriodMax), 1);
149 EXPECT_GE(static_cast<int>(caps.wPeriodMin), 1);
150 EXPECT_GT(static_cast<int>(caps.wPeriodMax), 1);
151 printf("timeGetTime range is %d to %dms\n", caps.wPeriodMin,
152 caps.wPeriodMax);
  /external/oprofile/agents/jvmti/
libjvmti_oprofile.c 243 jvmtiCapabilities caps; local
274 memset(&caps, '\0', sizeof(caps));
275 caps.can_generate_compiled_method_load_events = 1;
276 error = (*jvmti)->AddCapabilities(jvmti, &caps);
284 memset(&caps, '\0', sizeof(caps));
285 caps.can_get_line_numbers = 1;
286 caps.can_get_source_file_name = 1;
287 error = (*jvmti)->AddCapabilities(jvmti, &caps);
    [all...]
  /external/qemu/distrib/sdl-1.2.12/src/audio/dma/
SDL_dmaaudio.c 80 int caps; local
83 if ( (ioctl(fd, SNDCTL_DSP_GETCAPS, &caps) == 0) &&
84 (caps & DSP_CAP_TRIGGER) && (caps & DSP_CAP_MMAP) &&
  /external/qemu/distrib/sdl-1.2.12/src/audio/windib/
SDL_dibaudio.c 303 WAVEOUTCAPS caps; local
305 result = waveOutGetDevCaps((UINT)sound, &caps, sizeof(caps));
310 printf("Audio device: %s\n", caps.szPname);
  /packages/inputmethods/OpenWnn/src/jp/co/omronsoft/openwnn/EN/
DefaultSoftKeyboardEN.java 47 /** Auto caps mode */
101 int caps = connection.getCursorCapsMode(editor.inputType); local
102 return (caps == 0) ? 0 : 1;
150 /* auto caps mode */
  /external/qemu/distrib/sdl-1.2.12/src/audio/windx5/
SDL_dx5audio.c 431 DSBCAPS caps; local
461 SDL_memset(&caps, 0, sizeof(caps));
462 caps.dwSize = sizeof(caps);
463 result = IDirectSoundBuffer_GetCaps(*sndbuf, &caps);
471 if ( (chunksize > caps.dwBufferBytes) ||
472 ((caps.dwBufferBytes%chunksize) != 0) ) {
480 caps.dwBufferBytes, chunksize);
483 numchunks = (caps.dwBufferBytes/chunksize)
    [all...]
  /external/valgrind/main/coregrind/
m_debuglog.c 747 Bool is_long, caps; local
857 caps = toBool(format[i] == 'X');
864 ret += myvprintf_int64(send, send_arg2, flags, 16, width, caps,
867 ret += myvprintf_int64(send, send_arg2, flags, 16, width, caps,
  /prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/alsa/
mixer_abst.h 69 unsigned int caps; member in struct:_sm_selem

Completed in 416 milliseconds

1 2 3 4