Searched refs:MixVideoFormat (Results 1 – 9 of 9) sorted by relevance
/hardware/intel/common/libmix/mix_video/src/ |
D | mixvideoformat.h | 33 …AT(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), MIX_TYPE_VIDEOFORMAT, MixVideoFormat)) 39 typedef struct _MixVideoFormat MixVideoFormat; typedef 44 typedef MIX_RESULT (*MixVideoFmtGetCapsFunc)(MixVideoFormat *mix, GString *msg); 45 typedef MIX_RESULT (*MixVideoFmtInitializeFunc)(MixVideoFormat *mix, 51 typedef MIX_RESULT (*MixVideoFmtDecodeFunc)(MixVideoFormat *mix, 54 typedef MIX_RESULT (*MixVideoFmtFlushFunc)(MixVideoFormat *mix); 55 typedef MIX_RESULT (*MixVideoFmtEndOfStreamFunc)(MixVideoFormat *mix); 56 typedef MIX_RESULT (*MixVideoFmtDeinitializeFunc)(MixVideoFormat *mix); 121 MixVideoFormat *mix_videoformat_new(void); 130 MixVideoFormat *mix_videoformat_ref(MixVideoFormat * mix); [all …]
|
D | mixvideoformat_mp42.h | 33 MixVideoFormat parent; 95 MIX_RESULT mix_videofmt_mp42_getcaps(MixVideoFormat *mix, GString *msg); 96 MIX_RESULT mix_videofmt_mp42_initialize(MixVideoFormat *mix, 100 MIX_RESULT mix_videofmt_mp42_decode(MixVideoFormat *mix, MixBuffer * bufin[], 102 MIX_RESULT mix_videofmt_mp42_flush(MixVideoFormat *mix); 103 MIX_RESULT mix_videofmt_mp42_eos(MixVideoFormat *mix); 104 MIX_RESULT mix_videofmt_mp42_deinitialize(MixVideoFormat *mix); 108 MIX_RESULT mix_videofmt_mp42_handle_ref_frames(MixVideoFormat *mix, 111 MIX_RESULT mix_videofmt_mp42_process_decode(MixVideoFormat *mix, 114 MIX_RESULT mix_videofmt_mp42_release_input_buffers(MixVideoFormat *mix,
|
D | mixvideoformat_vc1.h | 33 MixVideoFormat parent; 94 MIX_RESULT mix_videofmt_vc1_getcaps(MixVideoFormat *mix, GString *msg); 95 MIX_RESULT mix_videofmt_vc1_initialize(MixVideoFormat *mix, 101 MIX_RESULT mix_videofmt_vc1_decode(MixVideoFormat *mix, MixBuffer * bufin[], 103 MIX_RESULT mix_videofmt_vc1_flush(MixVideoFormat *mix); 104 MIX_RESULT mix_videofmt_vc1_eos(MixVideoFormat *mix); 105 MIX_RESULT mix_videofmt_vc1_deinitialize(MixVideoFormat *mix); 109 MIX_RESULT mix_videofmt_vc1_handle_ref_frames(MixVideoFormat *mix, 114 MIX_RESULT mix_videofmt_vc1_process_decode(MixVideoFormat *mix, 120 MIX_RESULT mix_videofmt_vc1_release_input_buffers(MixVideoFormat *mix,
|
D | mixvideoformat_h264.h | 32 MixVideoFormat parent; 90 MIX_RESULT mix_videofmt_h264_getcaps(MixVideoFormat *mix, GString *msg); 91 MIX_RESULT mix_videofmt_h264_initialize(MixVideoFormat *mix, 97 MIX_RESULT mix_videofmt_h264_decode(MixVideoFormat *mix, MixBuffer * bufin[], 99 MIX_RESULT mix_videofmt_h264_flush(MixVideoFormat *mix); 100 MIX_RESULT mix_videofmt_h264_eos(MixVideoFormat *mix); 101 MIX_RESULT mix_videofmt_h264_deinitialize(MixVideoFormat *mix); 105 MIX_RESULT mix_videofmt_h264_handle_ref_frames(MixVideoFormat *mix, 110 MIX_RESULT mix_videofmt_h264_process_decode(MixVideoFormat *mix, 116 MIX_RESULT mix_videofmt_h264_release_input_buffers(MixVideoFormat *mix,
|
D | mixvideoformat.c | 17 static MIX_RESULT mix_videofmt_getcaps_default(MixVideoFormat *mix, 19 static MIX_RESULT mix_videofmt_initialize_default(MixVideoFormat *mix, 26 mix_videofmt_decode_default(MixVideoFormat *mix, 29 static MIX_RESULT mix_videofmt_flush_default(MixVideoFormat *mix); 30 static MIX_RESULT mix_videofmt_eos_default(MixVideoFormat *mix); 31 static MIX_RESULT mix_videofmt_deinitialize_default(MixVideoFormat *mix); 36 G_DEFINE_TYPE (MixVideoFormat, mix_videoformat, G_TYPE_OBJECT); 38 static void mix_videoformat_init(MixVideoFormat * self) { in mix_videoformat_init() 80 MixVideoFormat * 82 MixVideoFormat *ret = g_object_new(MIX_TYPE_VIDEOFORMAT, NULL); in mix_videoformat_new() [all …]
|
D | mixvideoformat_mp42.c | 53 MixVideoFormat *parent = MIX_VIDEOFORMAT(self); in mix_videoformat_mp42_init() 104 MixVideoFormat *parent = NULL; in mix_videoformat_mp42_finalize() 173 MIX_RESULT mix_videofmt_mp42_getcaps(MixVideoFormat *mix, GString *msg) { in mix_videofmt_mp42_getcaps() 186 MIX_RESULT mix_videofmt_mp42_initialize(MixVideoFormat *mix, in mix_videofmt_mp42_initialize() 194 MixVideoFormat *parent = NULL; in mix_videofmt_mp42_initialize() 390 MIX_RESULT mix_videofmt_mp42_decode(MixVideoFormat *mix, MixBuffer * bufin[], in mix_videofmt_mp42_decode() 393 MixVideoFormat *parent = NULL; in mix_videofmt_mp42_decode() 586 MIX_RESULT mix_videofmt_mp42_process_decode(MixVideoFormat *mix, in mix_videofmt_mp42_process_decode() 1120 MIX_RESULT mix_videofmt_mp42_flush(MixVideoFormat *mix) { in mix_videofmt_mp42_flush() 1172 MIX_RESULT mix_videofmt_mp42_eos(MixVideoFormat *mix) { in mix_videofmt_mp42_eos() [all …]
|
D | mixvideoformat_h264.c | 32 MixVideoFormat *parent = MIX_VIDEOFORMAT(self); in mix_videoformat_h264_init() 85 MixVideoFormat *parent = NULL; in mix_videoformat_h264_finalize() 129 MIX_RESULT mix_videofmt_h264_getcaps(MixVideoFormat *mix, GString *msg) { in mix_videofmt_h264_getcaps() 153 MIX_RESULT mix_videofmt_h264_initialize(MixVideoFormat *mix, in mix_videofmt_h264_initialize() 164 MixVideoFormat *parent = NULL; in mix_videofmt_h264_initialize() 565 MIX_RESULT mix_videofmt_h264_decode(MixVideoFormat *mix, MixBuffer * bufin[], in mix_videofmt_h264_decode() 570 MixVideoFormat *parent = NULL; in mix_videofmt_h264_decode() 780 MIX_RESULT mix_videofmt_h264_flush(MixVideoFormat *mix) { in mix_videofmt_h264_flush() 841 MIX_RESULT mix_videofmt_h264_eos(MixVideoFormat *mix) { in mix_videofmt_h264_eos() 908 MIX_RESULT mix_videofmt_h264_deinitialize(MixVideoFormat *mix) { in mix_videofmt_h264_deinitialize() [all …]
|
D | mixvideoformat_vc1.c | 40 MixVideoFormat *parent = MIX_VIDEOFORMAT(self); in mix_videoformat_vc1_init() 94 MixVideoFormat *parent = NULL; in mix_videoformat_vc1_finalize() 145 MIX_RESULT mix_videofmt_vc1_getcaps(MixVideoFormat *mix, GString *msg) { in mix_videofmt_vc1_getcaps() 242 MIX_RESULT mix_videofmt_vc1_initialize(MixVideoFormat *mix, in mix_videofmt_vc1_initialize() 253 MixVideoFormat *parent = NULL; in mix_videofmt_vc1_initialize() 618 MIX_RESULT mix_videofmt_vc1_decode(MixVideoFormat *mix, in mix_videofmt_vc1_decode() 624 MixVideoFormat *parent = NULL; in mix_videofmt_vc1_decode() 834 MIX_RESULT GetImageFromSurface (MixVideoFormat *mix, MixVideoFrame * frame) in GetImageFromSurface() 918 MixVideoFormat* mix, in mix_videofmt_vc1_decode_a_picture() 1298 MixVideoFormat *mix, in mix_videofmt_vc1_process_decode() [all …]
|
D | mixvideo_private.h | 35 MixVideoFormat *video_format;
|