Home
last modified time | relevance | path

Searched refs:OH_AVErrCode (Results 1 - 14 of 14) sorted by relevance

/interface/sdk_c/multimedia/player_framework/
H A Davplayer.h98 OH_AVErrCode OH_AVPlayer_SetURLSource(OH_AVPlayer *player, const char *url);
113 OH_AVErrCode OH_AVPlayer_SetFDSource(OH_AVPlayer *player, int32_t fd, int64_t offset, int64_t size);
128 OH_AVErrCode OH_AVPlayer_Prepare(OH_AVPlayer *player);
144 OH_AVErrCode OH_AVPlayer_Play(OH_AVPlayer *player);
156 OH_AVErrCode OH_AVPlayer_Pause(OH_AVPlayer *player);
168 OH_AVErrCode OH_AVPlayer_Stop(OH_AVPlayer *player);
184 OH_AVErrCode OH_AVPlayer_Reset(OH_AVPlayer *player);
201 OH_AVErrCode OH_AVPlayer_Release(OH_AVPlayer *player);
218 OH_AVErrCode OH_AVPlayer_ReleaseSync(OH_AVPlayer *player);
239 OH_AVErrCode OH_AVPlayer_SetVolum
[all...]
/interface/sdk_c/multimedia/av_codec/
H A Dnative_avcodec_videodecoder.h71 * otherwise returns a specific error code, refer to {@link OH_AVErrCode}.
78 OH_AVErrCode OH_VideoDecoder_Destroy(OH_AVCodec *codec);
88 * otherwise returns a specific error code, refer to {@link OH_AVErrCode}.
98 OH_AVErrCode OH_VideoDecoder_SetCallback(OH_AVCodec *codec, OH_AVCodecAsyncCallback callback, void *userData);
108 * otherwise returns a specific error code, refer to {@link OH_AVErrCode}.
116 OH_AVErrCode OH_VideoDecoder_RegisterCallback(OH_AVCodec *codec, OH_AVCodecCallback callback, void *userData);
125 * otherwise returns a specific error code, refer to {@link OH_AVErrCode}.
134 OH_AVErrCode OH_VideoDecoder_SetSurface(OH_AVCodec *codec, OHNativeWindow *window);
143 * otherwise returns a specific error code, refer to {@link OH_AVErrCode}.
153 OH_AVErrCode OH_VideoDecoder_Configur
[all...]
H A Dnative_avcodec_videoencoder.h79 * otherwise returns a specific error code, refer to {@link OH_AVErrCode}.
86 OH_AVErrCode OH_VideoEncoder_Destroy(OH_AVCodec *codec);
96 * otherwise returns a specific error code, refer to {@link OH_AVErrCode}.
106 OH_AVErrCode OH_VideoEncoder_SetCallback(OH_AVCodec *codec, OH_AVCodecAsyncCallback callback, void *userData);
116 * otherwise returns a specific error code, refer to {@link OH_AVErrCode}.
124 OH_AVErrCode OH_VideoEncoder_RegisterCallback(OH_AVCodec *codec, OH_AVCodecCallback callback, void *userData);
136 * otherwise returns a specific error code, refer to {@link OH_AVErrCode}.
144 OH_AVErrCode OH_VideoEncoder_RegisterParameterCallback(OH_AVCodec *codec,
155 * otherwise returns a specific error code, refer to {@link OH_AVErrCode}.
163 OH_AVErrCode OH_VideoEncoder_Configur
[all...]
H A Dnative_avcodec_audiodecoder.h66 * otherwise returns a specific error code, refer to {@link OH_AVErrCode}
71 OH_AVErrCode OH_AudioDecoder_Destroy(OH_AVCodec *codec);
81 * otherwise returns a specific error code, refer to {@link OH_AVErrCode}
86 OH_AVErrCode OH_AudioDecoder_SetCallback(OH_AVCodec *codec, OH_AVCodecAsyncCallback callback, void *userData);
95 * otherwise returns a specific error code, refer to {@link OH_AVErrCode}
100 OH_AVErrCode OH_AudioDecoder_Configure(OH_AVCodec *codec, OH_AVFormat *format);
108 * otherwise returns a specific error code, refer to {@link OH_AVErrCode}
113 OH_AVErrCode OH_AudioDecoder_Prepare(OH_AVCodec *codec);
121 * otherwise returns a specific error code, refer to {@link OH_AVErrCode}
126 OH_AVErrCode OH_AudioDecoder_Star
[all...]
H A Dnative_avcodec_audioencoder.h68 * otherwise returns a specific error code, refer to {@link OH_AVErrCode}
74 OH_AVErrCode OH_AudioEncoder_Destroy(OH_AVCodec *codec);
84 * otherwise returns a specific error code, refer to {@link OH_AVErrCode}
90 OH_AVErrCode OH_AudioEncoder_SetCallback(OH_AVCodec *codec, OH_AVCodecAsyncCallback callback, void *userData);
99 * otherwise returns a specific error code, refer to {@link OH_AVErrCode}
105 OH_AVErrCode OH_AudioEncoder_Configure(OH_AVCodec *codec, OH_AVFormat *format);
113 * otherwise returns a specific error code, refer to {@link OH_AVErrCode}
119 OH_AVErrCode OH_AudioEncoder_Prepare(OH_AVCodec *codec);
127 * otherwise returns a specific error code, refer to {@link OH_AVErrCode}
133 OH_AVErrCode OH_AudioEncoder_Star
[all...]
H A Dnative_avcodec_audiocodec.h69 * otherwise returns a specific error code, refer to {@link OH_AVErrCode}
76 OH_AVErrCode OH_AudioCodec_Destroy(OH_AVCodec *codec);
86 * otherwise returns a specific error code, refer to {@link OH_AVErrCode}
91 OH_AVErrCode OH_AudioCodec_RegisterCallback(OH_AVCodec *codec, OH_AVCodecCallback callback, void *userData);
100 * otherwise returns a specific error code, refer to {@link OH_AVErrCode}
108 OH_AVErrCode OH_AudioCodec_Configure(OH_AVCodec *codec, const OH_AVFormat *format);
116 * otherwise returns a specific error code, refer to {@link OH_AVErrCode}
124 OH_AVErrCode OH_AudioCodec_Prepare(OH_AVCodec *codec);
132 * otherwise returns a specific error code, refer to {@link OH_AVErrCode}
140 OH_AVErrCode OH_AudioCodec_Star
[all...]
H A Dnative_avcapability.h152 * otherwise returns a specific error code, refer to {@link OH_AVErrCode}
156 OH_AVErrCode OH_AVCapability_GetEncoderBitrateRange(OH_AVCapability *capability, OH_AVRange *bitrateRange);
174 * otherwise returns a specific error code, refer to {@link OH_AVErrCode}
178 OH_AVErrCode OH_AVCapability_GetEncoderQualityRange(OH_AVCapability *capability, OH_AVRange *qualityRange);
186 * otherwise returns a specific error code, refer to {@link OH_AVErrCode}
190 OH_AVErrCode OH_AVCapability_GetEncoderComplexityRange(OH_AVCapability *capability, OH_AVRange *complexityRange);
199 * otherwise returns a specific error code, refer to {@link OH_AVErrCode}
205 OH_AVErrCode OH_AVCapability_GetAudioSupportedSampleRates(OH_AVCapability *capability, const int32_t **sampleRates,
214 * otherwise returns a specific error code, refer to {@link OH_AVErrCode}
218 OH_AVErrCode OH_AVCapability_GetAudioChannelCountRang
[all...]
H A Dnative_avdemuxer.h87 * otherwise returns a specific error code, refer to {@link OH_AVErrCode}
91 OH_AVErrCode OH_AVDemuxer_Destroy(OH_AVDemuxer *demuxer);
103 * otherwise returns a specific error code, refer to {@link OH_AVErrCode}
108 OH_AVErrCode OH_AVDemuxer_SelectTrackByID(OH_AVDemuxer *demuxer, uint32_t trackIndex);
120 * otherwise returns a specific error code, refer to {@link OH_AVErrCode}
124 OH_AVErrCode OH_AVDemuxer_UnselectTrackByID(OH_AVDemuxer *demuxer, uint32_t trackIndex);
136 * otherwise returns a specific error code, refer to {@link OH_AVErrCode}
146 OH_AVErrCode OH_AVDemuxer_ReadSample(OH_AVDemuxer *demuxer, uint32_t trackIndex,
158 * otherwise returns a specific error code, refer to {@link OH_AVErrCode}
166 OH_AVErrCode OH_AVDemuxer_ReadSampleBuffe
[all...]
H A Dnative_avmuxer.h62 * otherwise returns a specific error code, refer to {@link OH_AVErrCode}
67 OH_AVErrCode OH_AVMuxer_SetRotation(OH_AVMuxer *muxer, int32_t rotation);
79 * otherwise returns a specific error code, refer to {@link OH_AVErrCode}
87 OH_AVErrCode OH_AVMuxer_AddTrack(OH_AVMuxer *muxer, int32_t *trackIndex, OH_AVFormat *trackFormat);
95 * otherwise returns a specific error code, refer to {@link OH_AVErrCode}
101 OH_AVErrCode OH_AVMuxer_Start(OH_AVMuxer *muxer);
114 * otherwise returns a specific error code, refer to {@link OH_AVErrCode}
123 OH_AVErrCode OH_AVMuxer_WriteSample(OH_AVMuxer *muxer, uint32_t trackIndex,
136 * otherwise returns a specific error code, refer to {@link OH_AVErrCode}
143 OH_AVErrCode OH_AVMuxer_WriteSampleBuffe
[all...]
H A Dnative_cencinfo.h165 OH_AVErrCode OH_AVCencInfo_Destroy(OH_AVCencInfo *cencInfo);
178 OH_AVErrCode OH_AVCencInfo_SetAlgorithm(OH_AVCencInfo *cencInfo, enum DrmCencAlgorithm algo);
195 OH_AVErrCode OH_AVCencInfo_SetKeyIdAndIv(OH_AVCencInfo *cencInfo, uint8_t *keyId,
214 OH_AVErrCode OH_AVCencInfo_SetSubsampleInfo(OH_AVCencInfo *cencInfo, uint32_t encryptedBlockCount,
228 OH_AVErrCode OH_AVCencInfo_SetMode(OH_AVCencInfo *cencInfo, enum DrmCencInfoMode mode);
242 OH_AVErrCode OH_AVCencInfo_SetAVBuffer(OH_AVCencInfo *cencInfo, OH_AVBuffer *buffer);
H A Dnative_avsource.h96 * otherwise returns a specific error code, refer to {@link OH_AVErrCode}
100 OH_AVErrCode OH_AVSource_Destroy(OH_AVSource *source);
/interface/sdk_c/multimedia/media_foundation/
H A Dnative_avbuffer.h75 OH_AVErrCode OH_AVBuffer_Destroy(OH_AVBuffer *buffer);
89 OH_AVErrCode OH_AVBuffer_GetBufferAttr(OH_AVBuffer *buffer, OH_AVCodecBufferAttr *attr);
103 OH_AVErrCode OH_AVBuffer_SetBufferAttr(OH_AVBuffer *buffer, const OH_AVCodecBufferAttr *attr);
128 OH_AVErrCode OH_AVBuffer_SetParameter(OH_AVBuffer *buffer, const OH_AVFormat *format);
H A Dnative_averrors.h40 typedef enum OH_AVErrCode { enum
110 } OH_AVErrCode; typedef
H A Dnative_avmemory.h95 OH_AVErrCode OH_AVMemory_Destroy(struct OH_AVMemory *mem);

Completed in 5 milliseconds