IAudioVideoCaptureDeviceNative::SetAudioSampleSink method for Windows Phone 8

July 21, 2014

Applies to: Windows Phone 8 and Windows Phone Silverlight 8.1 only

Sets the sink that will receive encoded audio samples during recording.

HRESULT SetAudioSampleSink(
   [in]    ICameraCaptureSampleSink* pSink
);

Parameters

  • pSink [in]
    Type: ICameraCaptureSampleSink*

    A pointer to the sink that will be used to receive audio samples.

Return value

Type: HRESULT

Returns S_OK if successful, or an error value otherwise.

Remarks

To access the IAudioVideoCaptureDeviceNative interface, invoke IUnknown::QueryInterface on the instance of the AudioVideoCaptureDevice class, using the UUID of IAudioVideoCaptureDeviceNative. These methods are not directly available from managed projections, but you can write your own Windows Runtime objects that wrap them.

This sink only receives samples while AudioVideoCaptureDevice is recording. Recording starts when the StartRecordingToSinkAsync method is called and ends after StopRecordingAsync is called. Specify the audio and video encoding formats using the AudioEncodingFormat and VideoEncodingFormat properties, respectively.

Whether AudioVideoCaptureDevice captures audio or video is determined by which open method is used to create the capture device. Use the OpenAsync method for video samples with audio, OpenForAudioOnlyAsync for audio samples, and OpenForVideoOnlyAsync for video samples without audio.

Requirements

Minimum supported phone

Windows Phone 8

Header

Windows.Phone.Media.Capture.Native.h

Namespace

Windows::Phone::Media::Capture

See Also

Other Resources

Advanced photo capture for Windows Phone 8

Advanced capture properties for Windows Phone 8