static int ivtv_setup_vbi_fmt(struct ivtv *itv, enum v4l2_mpeg_stream_vbi_fmt fmt) { if (!(itv->v4l2_cap & V4L2_CAP_SLICED_VBI_CAPTURE)) return -EINVAL; if (atomic_read(&itv->capturing) > 0) return -EBUSY; /* First try to allocate sliced VBI buffers if needed. */ if (fmt && itv->vbi.sliced_mpeg_data[0] == NULL) { int i; for (i = 0; i < IVTV_VBI_FRAMES; i++) { /* Yuck, hardcoded. Needs to be a define */ itv->vbi.sliced_mpeg_data[i] = kmalloc(2049, GFP_KERNEL); if (itv->vbi.sliced_mpeg_data[i] == NULL) { while (--i >= 0) { kfree(itv->vbi.sliced_mpeg_data[i]); itv->vbi.sliced_mpeg_data[i] = NULL; } return -ENOMEM; } } } itv->vbi.insert_mpeg = fmt; if (itv->vbi.insert_mpeg == 0) { return 0; } /* Need sliced data for mpeg insertion */ if (ivtv_get_service_set(itv->vbi.sliced_in) == 0) { if (itv->is_60hz) itv->vbi.sliced_in->service_set = V4L2_SLICED_CAPTION_525; else itv->vbi.sliced_in->service_set = V4L2_SLICED_WSS_625; ivtv_expand_service_set(itv->vbi.sliced_in, itv->is_50hz); } return 0; }
static int ivtv_s_stream_vbi_fmt(struct cx2341x_handler *cxhdl, u32 fmt) { struct ivtv *itv = container_of(cxhdl, struct ivtv, cxhdl); /* First try to allocate sliced VBI buffers if needed. */ if (fmt && itv->vbi.sliced_mpeg_data[0] == NULL) { int i; for (i = 0; i < IVTV_VBI_FRAMES; i++) { /* Yuck, hardcoded. Needs to be a define */ itv->vbi.sliced_mpeg_data[i] = kmalloc(2049, GFP_KERNEL); if (itv->vbi.sliced_mpeg_data[i] == NULL) { while (--i >= 0) { kfree(itv->vbi.sliced_mpeg_data[i]); itv->vbi.sliced_mpeg_data[i] = NULL; } return -ENOMEM; } } } itv->vbi.insert_mpeg = fmt; if (itv->vbi.insert_mpeg == 0) { return 0; } /* Need sliced data for mpeg insertion */ if (ivtv_get_service_set(itv->vbi.sliced_in) == 0) { if (itv->is_60hz) itv->vbi.sliced_in->service_set = V4L2_SLICED_CAPTION_525; else itv->vbi.sliced_in->service_set = V4L2_SLICED_WSS_625; ivtv_expand_service_set(itv->vbi.sliced_in, itv->is_50hz); } return 0; }