• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/sound/pci/lx6464es/

Lines Matching defs:is_capture

518 int lx_pipe_allocate(struct lx6464es *chip, u32 pipe, int is_capture,
524 u32 pipe_cmd = PIPE_INFO_TO_CMD(is_capture, pipe);
541 int lx_pipe_release(struct lx6464es *chip, u32 pipe, int is_capture)
546 u32 pipe_cmd = PIPE_INFO_TO_CMD(is_capture, pipe);
559 int lx_buffer_ask(struct lx6464es *chip, u32 pipe, int is_capture,
565 u32 pipe_cmd = PIPE_INFO_TO_CMD(is_capture, pipe);
604 int lx_pipe_stop(struct lx6464es *chip, u32 pipe, int is_capture)
609 u32 pipe_cmd = PIPE_INFO_TO_CMD(is_capture, pipe);
622 static int lx_pipe_toggle_state(struct lx6464es *chip, u32 pipe, int is_capture)
627 u32 pipe_cmd = PIPE_INFO_TO_CMD(is_capture, pipe);
641 int lx_pipe_start(struct lx6464es *chip, u32 pipe, int is_capture)
645 err = lx_pipe_wait_for_idle(chip, pipe, is_capture);
649 err = lx_pipe_toggle_state(chip, pipe, is_capture);
654 int lx_pipe_pause(struct lx6464es *chip, u32 pipe, int is_capture)
658 err = lx_pipe_wait_for_start(chip, pipe, is_capture);
662 err = lx_pipe_toggle_state(chip, pipe, is_capture);
668 int lx_pipe_sample_count(struct lx6464es *chip, u32 pipe, int is_capture,
674 u32 pipe_cmd = PIPE_INFO_TO_CMD(is_capture, pipe);
697 int lx_pipe_state(struct lx6464es *chip, u32 pipe, int is_capture, u16 *rstate)
702 u32 pipe_cmd = PIPE_INFO_TO_CMD(is_capture, pipe);
721 int is_capture, u16 state)
729 int err = lx_pipe_state(chip, pipe, is_capture, &current_state);
743 int lx_pipe_wait_for_start(struct lx6464es *chip, u32 pipe, int is_capture)
745 return lx_pipe_wait_for_state(chip, pipe, is_capture, PSTATE_RUN);
748 int lx_pipe_wait_for_idle(struct lx6464es *chip, u32 pipe, int is_capture)
750 return lx_pipe_wait_for_state(chip, pipe, is_capture, PSTATE_IDLE);
755 int is_capture, enum stream_state_t state)
760 u32 pipe_cmd = PIPE_INFO_TO_CMD(is_capture, pipe);
775 u32 pipe, int is_capture)
780 u32 pipe_cmd = PIPE_INFO_TO_CMD(is_capture, pipe);
809 int lx_stream_state(struct lx6464es *chip, u32 pipe, int is_capture,
815 u32 pipe_cmd = PIPE_INFO_TO_CMD(is_capture, pipe);
830 int lx_stream_sample_position(struct lx6464es *chip, u32 pipe, int is_capture,
836 u32 pipe_cmd = PIPE_INFO_TO_CMD(is_capture, pipe);
854 int lx_buffer_give(struct lx6464es *chip, u32 pipe, int is_capture,
861 u32 pipe_cmd = PIPE_INFO_TO_CMD(is_capture, pipe);
901 int lx_buffer_free(struct lx6464es *chip, u32 pipe, int is_capture,
907 u32 pipe_cmd = PIPE_INFO_TO_CMD(is_capture, pipe);
925 int lx_buffer_cancel(struct lx6464es *chip, u32 pipe, int is_capture,
931 u32 pipe_cmd = PIPE_INFO_TO_CMD(is_capture, pipe);
951 int lx_level_unmute(struct lx6464es *chip, int is_capture, int unmute)
962 chip->rmh.cmd[0] |= PIPE_INFO_TO_CMD(is_capture, 0);
995 int lx_level_peaks(struct lx6464es *chip, int is_capture, int channels,
1007 chip->rmh.cmd[0] |= PIPE_INFO_TO_CMD(is_capture, i);
1141 int is_capture = lx_stream->is_capture;
1165 err = lx_buffer_ask(chip, 0, is_capture, &needed, &freed, size_array);
1169 err = lx_buffer_give(chip, 0, is_capture, period_bytes, buf_lo, buf_hi,