HomeSort by relevance Sort by last modified time
    Searched refs:MixVideoFormatEnc (Results 1 - 9 of 9) sorted by null

  /hardware/intel/common/libmix/mix_video/src/
mixvideoformatenc.h 29 #define MIX_VIDEOFORMATENC(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), MIX_TYPE_VIDEOFORMATENC, MixVideoFormatEnc))
35 typedef struct _MixVideoFormatEnc MixVideoFormatEnc;
41 typedef MIX_RESULT (*MixVideoFmtEncGetCapsFunc)(MixVideoFormatEnc *mix, GString *msg);
42 typedef MIX_RESULT (*MixVideoFmtEncInitializeFunc)(MixVideoFormatEnc *mix,
48 typedef MIX_RESULT (*MixVideoFmtEncodeFunc)(MixVideoFormatEnc *mix, MixBuffer * bufin[],
51 typedef MIX_RESULT (*MixVideoFmtEncFlushFunc)(MixVideoFormatEnc *mix);
52 typedef MIX_RESULT (*MixVideoFmtEncEndOfStreamFunc)(MixVideoFormatEnc *mix);
53 typedef MIX_RESULT (*MixVideoFmtEncDeinitializeFunc)(MixVideoFormatEnc *mix);
54 typedef MIX_RESULT (*MixVideoFmtEncGetMaxEncodedBufSizeFunc) (MixVideoFormatEnc *mix, guint *max_size);
130 * @returns: A newly allocated instance of #MixVideoFormatEnc
    [all...]
mixvideoformatenc_mpeg4.h 12 #include "mixvideoformatenc.h"
35 MixVideoFormatEnc parent;
116 MIX_RESULT mix_videofmtenc_mpeg4_getcaps(MixVideoFormatEnc *mix, GString *msg);
117 MIX_RESULT mix_videofmtenc_mpeg4_initialize(MixVideoFormatEnc *mix,
123 MIX_RESULT mix_videofmtenc_mpeg4_encode(MixVideoFormatEnc *mix, MixBuffer * bufin[],
126 MIX_RESULT mix_videofmtenc_mpeg4_flush(MixVideoFormatEnc *mix);
127 MIX_RESULT mix_videofmtenc_mpeg4_eos(MixVideoFormatEnc *mix);
128 MIX_RESULT mix_videofmtenc_mpeg4_deinitialize(MixVideoFormatEnc *mix);
129 MIX_RESULT mix_videofmtenc_mpeg4_get_max_encoded_buf_size (MixVideoFormatEnc *mix, guint * max_size);
mixvideoformatenc_preview.h 12 #include "mixvideoformatenc.h"
35 MixVideoFormatEnc parent;
115 MIX_RESULT mix_videofmtenc_preview_getcaps(MixVideoFormatEnc *mix, GString *msg);
116 MIX_RESULT mix_videofmtenc_preview_initialize(MixVideoFormatEnc *mix,
122 MIX_RESULT mix_videofmtenc_preview_encode(MixVideoFormatEnc *mix, MixBuffer * bufin[],
125 MIX_RESULT mix_videofmtenc_preview_flush(MixVideoFormatEnc *mix);
126 MIX_RESULT mix_videofmtenc_preview_eos(MixVideoFormatEnc *mix);
127 MIX_RESULT mix_videofmtenc_preview_deinitialize(MixVideoFormatEnc *mix);
mixvideoformatenc_h264.h 12 #include "mixvideoformatenc.h"
35 MixVideoFormatEnc parent;
115 MIX_RESULT mix_videofmtenc_h264_getcaps(MixVideoFormatEnc *mix, GString *msg);
116 MIX_RESULT mix_videofmtenc_h264_initialize(MixVideoFormatEnc *mix,
122 MIX_RESULT mix_videofmtenc_h264_encode(MixVideoFormatEnc *mix, MixBuffer * bufin[],
125 MIX_RESULT mix_videofmtenc_h264_flush(MixVideoFormatEnc *mix);
126 MIX_RESULT mix_videofmtenc_h264_eos(MixVideoFormatEnc *mix);
127 MIX_RESULT mix_videofmtenc_h264_deinitialize(MixVideoFormatEnc *mix);
128 MIX_RESULT mix_videofmtenc_h264_get_max_encoded_buf_size (MixVideoFormatEnc *mix, guint * max_size);
mixvideoformatenc.c 10 #include "mixvideoformatenc.h"
15 static MIX_RESULT mix_videofmtenc_getcaps_default(MixVideoFormatEnc *mix,
17 static MIX_RESULT mix_videofmtenc_initialize_default(MixVideoFormatEnc *mix,
25 mix_videofmtenc_encode_default(MixVideoFormatEnc *mix, MixBuffer * bufin[],
28 static MIX_RESULT mix_videofmtenc_flush_default(MixVideoFormatEnc *mix);
29 static MIX_RESULT mix_videofmtenc_eos_default(MixVideoFormatEnc *mix);
30 static MIX_RESULT mix_videofmtenc_deinitialize_default(MixVideoFormatEnc *mix);
32 MixVideoFormatEnc *mix, guint *max_size);
38 G_DEFINE_TYPE (MixVideoFormatEnc, mix_videoformatenc, G_TYPE_OBJECT);
40 static void mix_videoformatenc_init(MixVideoFormatEnc * self)
    [all...]
mixvideo_private.h 36 MixVideoFormatEnc *video_format_enc;
mixvideoformatenc_mpeg4.c 39 MixVideoFormatEnc *parent = MIX_VIDEOFORMATENC(self);
113 MIX_RESULT mix_videofmtenc_mpeg4_getcaps(MixVideoFormatEnc *mix, GString *msg) {
135 MIX_RESULT mix_videofmtenc_mpeg4_initialize(MixVideoFormatEnc *mix,
143 MixVideoFormatEnc *parent = NULL;
676 MIX_RESULT mix_videofmtenc_mpeg4_encode(MixVideoFormatEnc *mix, MixBuffer * bufin[],
681 MixVideoFormatEnc *parent = NULL;
755 MIX_RESULT mix_videofmtenc_mpeg4_flush(MixVideoFormatEnc *mix) {
811 MIX_RESULT mix_videofmtenc_mpeg4_eos(MixVideoFormatEnc *mix) {
832 MIX_RESULT mix_videofmtenc_mpeg4_deinitialize(MixVideoFormatEnc *mix) {
834 MixVideoFormatEnc *parent = NULL;
    [all...]
mixvideoformatenc_h264.c 39 MixVideoFormatEnc *parent = MIX_VIDEOFORMATENC(self);
113 MIX_RESULT mix_videofmtenc_h264_getcaps(MixVideoFormatEnc *mix, GString *msg) {
135 MIX_RESULT mix_videofmtenc_h264_initialize(MixVideoFormatEnc *mix,
143 MixVideoFormatEnc *parent = NULL;
691 MIX_RESULT mix_videofmtenc_h264_encode(MixVideoFormatEnc *mix, MixBuffer * bufin[],
696 MixVideoFormatEnc *parent = NULL;
771 MIX_RESULT mix_videofmtenc_h264_flush(MixVideoFormatEnc *mix) {
829 MIX_RESULT mix_videofmtenc_h264_eos(MixVideoFormatEnc *mix) {
850 MIX_RESULT mix_videofmtenc_h264_deinitialize(MixVideoFormatEnc *mix) {
852 MixVideoFormatEnc *parent = NULL
    [all...]
mixvideoformatenc_preview.c 39 MixVideoFormatEnc *parent = MIX_VIDEOFORMATENC(self);
112 MIX_RESULT mix_videofmtenc_preview_getcaps(MixVideoFormatEnc *mix, GString *msg) {
134 MIX_RESULT mix_videofmtenc_preview_initialize(MixVideoFormatEnc *mix,
142 MixVideoFormatEnc *parent = NULL;
619 MIX_RESULT mix_videofmtenc_preview_encode(MixVideoFormatEnc *mix, MixBuffer * bufin[],
624 MixVideoFormatEnc *parent = NULL;
698 MIX_RESULT mix_videofmtenc_preview_flush(MixVideoFormatEnc *mix) {
756 MIX_RESULT mix_videofmtenc_preview_eos(MixVideoFormatEnc *mix) {
777 MIX_RESULT mix_videofmtenc_preview_deinitialize(MixVideoFormatEnc *mix) {
779 MixVideoFormatEnc *parent = NULL
    [all...]

Completed in 63 milliseconds