Home
last modified time | relevance | path

Searched refs:codec_id (Results 1 – 14 of 14) sorted by relevance

/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/
Dwebmdec.c62 int codec_id; in file_is_webm() local
83 codec_id = nestegg_track_codec_id(webm_ctx->nestegg_ctx, i); in file_is_webm()
84 if (codec_id == NESTEGG_CODEC_VP8) { in file_is_webm()
86 } else if (codec_id == NESTEGG_CODEC_VP9) { in file_is_webm()
/hardware/qcom/msm8996/kernel-headers/linux/mfd/
Dmsm-adie-codec.h79 int codec_id; member
/hardware/qcom/msm8x26/kernel-headers/linux/mfd/
Dmsm-adie-codec.h79 int codec_id; member
/hardware/qcom/msm8960/kernel-headers/linux/mfd/
Dmsm-adie-codec.h79 int codec_id; member
/hardware/qcom/msm8x84/kernel-headers/linux/mfd/
Dmsm-adie-codec.h79 int codec_id; member
/hardware/qcom/msm8994/kernel-headers/linux/mfd/
Dmsm-adie-codec.h79 int codec_id; member
/hardware/qcom/msm8x84/original-kernel-headers/linux/mfd/
Dmsm-adie-codec.h100 int codec_id; member
/hardware/qcom/msm8994/original-kernel-headers/linux/mfd/
Dmsm-adie-codec.h100 int codec_id; member
/hardware/qcom/msm8996/original-kernel-headers/linux/mfd/
Dmsm-adie-codec.h100 int codec_id; member
/hardware/qcom/msm8960/original-kernel-headers/linux/mfd/
Dmsm-adie-codec.h100 int codec_id; member
/hardware/qcom/msm8x26/original-kernel-headers/linux/mfd/
Dmsm-adie-codec.h100 int codec_id; member
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/third_party/nestegg/src/
Dnestegg.c235 struct ebml_type codec_id; member
418 E_FIELD(ID_CODEC_ID, TYPE_STRING, struct track_entry, codec_id),
1979 char * codec_id; in nestegg_track_codec_id() local
1986 if (ne_get_string(entry->codec_id, &codec_id) != 0) in nestegg_track_codec_id()
1989 if (strcmp(codec_id, TRACK_ID_VP8) == 0) in nestegg_track_codec_id()
1992 if (strcmp(codec_id, TRACK_ID_VP9) == 0) in nestegg_track_codec_id()
1995 if (strcmp(codec_id, TRACK_ID_VORBIS) == 0) in nestegg_track_codec_id()
1998 if (strcmp(codec_id, TRACK_ID_OPUS) == 0) in nestegg_track_codec_id()
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/third_party/libwebm/
Dmkvmuxer.hpp333 void set_codec_id(const char* codec_id);
334 const char* codec_id() const { return codec_id_; } in codec_id() function in mkvmuxer::Track
Dmkvmuxer.cpp749 void Track::set_codec_id(const char* codec_id) { in set_codec_id() argument
750 if (codec_id) { in set_codec_id()
753 const size_t length = strlen(codec_id) + 1; in set_codec_id()
757 strcpy_s(codec_id_, length, codec_id); in set_codec_id()
759 strcpy(codec_id_, codec_id); in set_codec_id()