Changeset 598 for GPL/trunk/alsa-kernel/core/oss/pcm_oss.c
- Timestamp:
- Apr 3, 2017, 4:51:56 PM (8 years ago)
- Location:
- GPL/trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
GPL/trunk ¶
-
Property svn:mergeinfo
set to
/GPL/branches/uniaud32-2.1.x merged eligible
-
Property svn:mergeinfo
set to
-
TabularUnified GPL/trunk/alsa-kernel/core/oss/pcm_oss.c ¶
r479 r598 458 458 *params = *save; 459 459 max = snd_pcm_hw_param_max(pcm, params, var, max, &maxdir); 460 if (max < 0) 460 if (max < 0) { 461 kfree(save); 461 462 return max; 463 } 462 464 last = 1; 463 465 } … … 641 643 } 642 644 645 static inline 646 snd_pcm_uframes_t get_hw_ptr_period(struct snd_pcm_runtime *runtime) 647 { 648 return runtime->hw_ptr_interrupt; 649 } 650 643 651 /* define extended formats in the recent OSS versions (if any) */ 644 652 /* linear formats */ … … 1052 1060 runtime->oss.rate = params_rate(params); 1053 1061 1062 vfree(runtime->oss.buffer); 1063 runtime->oss.buffer = vmalloc(runtime->oss.period_bytes); 1064 if (!runtime->oss.buffer) { 1065 err = -ENOMEM; 1066 goto failure; 1067 } 1068 1054 1069 runtime->oss.params = 0; 1055 1070 runtime->oss.prepare = 1; 1056 vfree(runtime->oss.buffer);1057 runtime->oss.buffer = vmalloc(runtime->oss.period_bytes);1058 1071 runtime->oss.buffer_used = 0; 1059 1072 if (runtime->dma_area) … … 1106 1119 } 1107 1120 runtime->oss.prepare = 0; 1108 runtime->oss.prev_hw_ptr_ interrupt= 0;1121 runtime->oss.prev_hw_ptr_period = 0; 1109 1122 runtime->oss.period_ptr = 0; 1110 1123 runtime->oss.buffer_used = 0; … … 1508 1521 { 1509 1522 struct snd_pcm_substream *substream; 1510 1511 substream = pcm_oss_file->streams[SNDRV_PCM_STREAM_PLAYBACK]; 1512 if (substream != NULL) { 1523 struct snd_pcm_runtime *runtime; 1524 int i; 1525 1526 for (i = 0; i < 2; i++) { 1527 substream = pcm_oss_file->streams[i]; 1528 if (!substream) 1529 continue; 1530 runtime = substream->runtime; 1513 1531 snd_pcm_kernel_ioctl(substream, SNDRV_PCM_IOCTL_DROP, NULL); 1514 substream->runtime->oss.prepare = 1; 1515 } 1516 substream = pcm_oss_file->streams[SNDRV_PCM_STREAM_CAPTURE]; 1517 if (substream != NULL) { 1518 snd_pcm_kernel_ioctl(substream, SNDRV_PCM_IOCTL_DROP, NULL); 1519 substream->runtime->oss.prepare = 1; 1532 runtime->oss.prepare = 1; 1533 runtime->oss.buffer_used = 0; 1534 runtime->oss.prev_hw_ptr_period = 0; 1535 runtime->oss.period_ptr = 0; 1520 1536 } 1521 1537 return 0; … … 1962 1978 } 1963 1979 1964 static void snd_pcm_oss_simulate_fill(struct snd_pcm_substream *substream, snd_pcm_uframes_t hw_ptr) 1980 static void snd_pcm_oss_simulate_fill(struct snd_pcm_substream *substream, 1981 snd_pcm_uframes_t hw_ptr) 1965 1982 { 1966 1983 struct snd_pcm_runtime *runtime = substream->runtime; … … 1998 2015 goto _skip1; 1999 2016 if (atomic_read(&psubstream->mmap_count)) 2000 snd_pcm_oss_simulate_fill(psubstream, runtime->hw_ptr_interrupt); 2017 snd_pcm_oss_simulate_fill(psubstream, 2018 get_hw_ptr_period(runtime)); 2001 2019 runtime->oss.trigger = 1; 2002 2020 runtime->start_threshold = 1; … … 2117 2135 if (atomic_read(&substream->mmap_count)) { 2118 2136 snd_pcm_sframes_t n; 2119 n = (delay = runtime->hw_ptr_interrupt) - runtime->oss.prev_hw_ptr_interrupt; 2137 delay = get_hw_ptr_period(runtime); 2138 n = delay - runtime->oss.prev_hw_ptr_period; 2120 2139 if (n < 0) 2121 2140 n += runtime->boundary; 2122 2141 info.blocks = n / runtime->period_size; 2123 runtime->oss.prev_hw_ptr_ interrupt= delay;2142 runtime->oss.prev_hw_ptr_period = delay; 2124 2143 if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK) 2125 2144 snd_pcm_oss_simulate_fill(substream, delay); … … 2381 2400 int nonblock; 2382 2401 wait_queue_t wait; 2402 2403 err = nonseekable_open(inode, file); 2404 if (err < 0) 2405 return err; 2383 2406 2384 2407 pcm = snd_lookup_oss_minor_data(iminor(inode), … … 2696 2719 struct snd_pcm_runtime *runtime = substream->runtime; 2697 2720 if (atomic_read(&substream->mmap_count)) 2698 return runtime->oss.prev_hw_ptr_interrupt != runtime->hw_ptr_interrupt; 2721 return runtime->oss.prev_hw_ptr_period != 2722 get_hw_ptr_period(runtime); 2699 2723 else 2700 return snd_pcm_playback_avail(runtime) >= runtime->oss.period_frames; 2724 return snd_pcm_playback_avail(runtime) >= 2725 runtime->oss.period_frames; 2701 2726 } 2702 2727 … … 2705 2730 struct snd_pcm_runtime *runtime = substream->runtime; 2706 2731 if (atomic_read(&substream->mmap_count)) 2707 return runtime->oss.prev_hw_ptr_interrupt != runtime->hw_ptr_interrupt; 2732 return runtime->oss.prev_hw_ptr_period != 2733 get_hw_ptr_period(runtime); 2708 2734 else 2709 return snd_pcm_capture_avail(runtime) >= runtime->oss.period_frames; 2735 return snd_pcm_capture_avail(runtime) >= 2736 runtime->oss.period_frames; 2710 2737 } 2711 2738 … … 2866 2893 { 2867 2894 struct snd_pcm_str *pstr = entry->private_data; 2868 char line[128], str[32], task_name[32], *ptr; 2895 char line[128], str[32], task_name[32]; 2896 const char *ptr; 2869 2897 int idx1; 2870 2898 struct snd_pcm_oss_setup *setup, *setup1, template; … … 2992 3020 .open = snd_pcm_oss_open, 2993 3021 .release = snd_pcm_oss_release, 3022 .llseek = no_llseek, 2994 3023 .poll = snd_pcm_oss_poll, 2995 3024 #ifdef CONFIG_SND_HAVE_NEW_IOCTL
Note:
See TracChangeset
for help on using the changeset viewer.