Home
last modified time | relevance | path

Searched refs:MixVideoFormatEnc (Results 1 – 9 of 9) sorted by relevance

/hardware/intel/common/libmix/mix_video/src/
Dmixvideoformatenc.h29 …) (G_TYPE_CHECK_INSTANCE_CAST ((obj), MIX_TYPE_VIDEOFORMATENC, MixVideoFormatEnc))
35 typedef struct _MixVideoFormatEnc MixVideoFormatEnc; typedef
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_si…
134 MixVideoFormatEnc *mix_videoformatenc_new(void);
[all …]
Dmixvideoformatenc.c15 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) { in mix_videoformatenc_init()
96 MixVideoFormatEnc *
[all …]
Dmixvideoformatenc_mpeg4.h35 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…
Dmixvideoformatenc_h264.h35 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);
Dmixvideoformatenc_preview.h35 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);
Dmixvideoformatenc_mpeg4.c39 MixVideoFormatEnc *parent = MIX_VIDEOFORMATENC(self); in mix_videoformatenc_mpeg4_init()
113 MIX_RESULT mix_videofmtenc_mpeg4_getcaps(MixVideoFormatEnc *mix, GString *msg) { in mix_videofmtenc_mpeg4_getcaps()
135 MIX_RESULT mix_videofmtenc_mpeg4_initialize(MixVideoFormatEnc *mix, in mix_videofmtenc_mpeg4_initialize()
143 MixVideoFormatEnc *parent = NULL; in mix_videofmtenc_mpeg4_initialize()
676 MIX_RESULT mix_videofmtenc_mpeg4_encode(MixVideoFormatEnc *mix, MixBuffer * bufin[], in mix_videofmtenc_mpeg4_encode()
681 MixVideoFormatEnc *parent = NULL; in mix_videofmtenc_mpeg4_encode()
755 MIX_RESULT mix_videofmtenc_mpeg4_flush(MixVideoFormatEnc *mix) { in mix_videofmtenc_mpeg4_flush()
811 MIX_RESULT mix_videofmtenc_mpeg4_eos(MixVideoFormatEnc *mix) { in mix_videofmtenc_mpeg4_eos()
832 MIX_RESULT mix_videofmtenc_mpeg4_deinitialize(MixVideoFormatEnc *mix) { in mix_videofmtenc_mpeg4_deinitialize()
834 MixVideoFormatEnc *parent = NULL; in mix_videofmtenc_mpeg4_deinitialize()
[all …]
Dmixvideoformatenc_preview.c39 MixVideoFormatEnc *parent = MIX_VIDEOFORMATENC(self); in mix_videoformatenc_preview_init()
112 MIX_RESULT mix_videofmtenc_preview_getcaps(MixVideoFormatEnc *mix, GString *msg) { in mix_videofmtenc_preview_getcaps()
134 MIX_RESULT mix_videofmtenc_preview_initialize(MixVideoFormatEnc *mix, in mix_videofmtenc_preview_initialize()
142 MixVideoFormatEnc *parent = NULL; in mix_videofmtenc_preview_initialize()
619 MIX_RESULT mix_videofmtenc_preview_encode(MixVideoFormatEnc *mix, MixBuffer * bufin[], in mix_videofmtenc_preview_encode()
624 MixVideoFormatEnc *parent = NULL; in mix_videofmtenc_preview_encode()
698 MIX_RESULT mix_videofmtenc_preview_flush(MixVideoFormatEnc *mix) { in mix_videofmtenc_preview_flush()
756 MIX_RESULT mix_videofmtenc_preview_eos(MixVideoFormatEnc *mix) { in mix_videofmtenc_preview_eos()
777 MIX_RESULT mix_videofmtenc_preview_deinitialize(MixVideoFormatEnc *mix) { in mix_videofmtenc_preview_deinitialize()
779 MixVideoFormatEnc *parent = NULL; in mix_videofmtenc_preview_deinitialize()
[all …]
Dmixvideoformatenc_h264.c39 MixVideoFormatEnc *parent = MIX_VIDEOFORMATENC(self); in mix_videoformatenc_h264_init()
113 MIX_RESULT mix_videofmtenc_h264_getcaps(MixVideoFormatEnc *mix, GString *msg) { in mix_videofmtenc_h264_getcaps()
135 MIX_RESULT mix_videofmtenc_h264_initialize(MixVideoFormatEnc *mix, in mix_videofmtenc_h264_initialize()
143 MixVideoFormatEnc *parent = NULL; in mix_videofmtenc_h264_initialize()
691 MIX_RESULT mix_videofmtenc_h264_encode(MixVideoFormatEnc *mix, MixBuffer * bufin[], in mix_videofmtenc_h264_encode()
696 MixVideoFormatEnc *parent = NULL; in mix_videofmtenc_h264_encode()
771 MIX_RESULT mix_videofmtenc_h264_flush(MixVideoFormatEnc *mix) { in mix_videofmtenc_h264_flush()
829 MIX_RESULT mix_videofmtenc_h264_eos(MixVideoFormatEnc *mix) { in mix_videofmtenc_h264_eos()
850 MIX_RESULT mix_videofmtenc_h264_deinitialize(MixVideoFormatEnc *mix) { in mix_videofmtenc_h264_deinitialize()
852 MixVideoFormatEnc *parent = NULL; in mix_videofmtenc_h264_deinitialize()
[all …]
Dmixvideo_private.h36 MixVideoFormatEnc *video_format_enc;