|
@@ -493,10 +493,10 @@ static int vdec_h264_get_param(unsigned long h_vdec,
|
|
}
|
|
}
|
|
|
|
|
|
static struct vdec_common_if vdec_h264_if = {
|
|
static struct vdec_common_if vdec_h264_if = {
|
|
- vdec_h264_init,
|
|
|
|
- vdec_h264_decode,
|
|
|
|
- vdec_h264_get_param,
|
|
|
|
- vdec_h264_deinit,
|
|
|
|
|
|
+ .init = vdec_h264_init,
|
|
|
|
+ .decode = vdec_h264_decode,
|
|
|
|
+ .get_param = vdec_h264_get_param,
|
|
|
|
+ .deinit = vdec_h264_deinit,
|
|
};
|
|
};
|
|
|
|
|
|
struct vdec_common_if *get_h264_dec_comm_if(void);
|
|
struct vdec_common_if *get_h264_dec_comm_if(void);
|