Ignore:
Timestamp:
Apr 3, 2017, 4:51:56 PM (8 years ago)
Author:
David Azarewicz
Message:

Merged/reintegrated v2 branch into trunk. Trunk is now v2

Location:
GPL/trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • GPL/trunk

  • TabularUnified GPL/trunk/alsa-kernel/core/oss/pcm_oss.c

    r479 r598  
    458458                *params = *save;
    459459                max = snd_pcm_hw_param_max(pcm, params, var, max, &maxdir);
    460                 if (max < 0)
     460                if (max < 0) {
     461                        kfree(save);
    461462                        return max;
     463                }
    462464                last = 1;
    463465        }
     
    641643}
    642644
     645static inline
     646snd_pcm_uframes_t get_hw_ptr_period(struct snd_pcm_runtime *runtime)
     647{
     648        return runtime->hw_ptr_interrupt;
     649}
     650
    643651/* define extended formats in the recent OSS versions (if any) */
    644652/* linear formats */
     
    10521060        runtime->oss.rate = params_rate(params);
    10531061
     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
    10541069        runtime->oss.params = 0;
    10551070        runtime->oss.prepare = 1;
    1056         vfree(runtime->oss.buffer);
    1057         runtime->oss.buffer = vmalloc(runtime->oss.period_bytes);
    10581071        runtime->oss.buffer_used = 0;
    10591072        if (runtime->dma_area)
     
    11061119        }
    11071120        runtime->oss.prepare = 0;
    1108         runtime->oss.prev_hw_ptr_interrupt = 0;
     1121        runtime->oss.prev_hw_ptr_period = 0;
    11091122        runtime->oss.period_ptr = 0;
    11101123        runtime->oss.buffer_used = 0;
     
    15081521{
    15091522        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;
    15131531                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;
    15201536        }
    15211537        return 0;
     
    19621978}
    19631979
    1964 static void snd_pcm_oss_simulate_fill(struct snd_pcm_substream *substream, snd_pcm_uframes_t hw_ptr)
     1980static void snd_pcm_oss_simulate_fill(struct snd_pcm_substream *substream,
     1981                                      snd_pcm_uframes_t hw_ptr)
    19651982{
    19661983        struct snd_pcm_runtime *runtime = substream->runtime;
     
    19982015                                goto _skip1;
    19992016                        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));
    20012019                        runtime->oss.trigger = 1;
    20022020                        runtime->start_threshold = 1;
     
    21172135        if (atomic_read(&substream->mmap_count)) {
    21182136                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;
    21202139                if (n < 0)
    21212140                        n += runtime->boundary;
    21222141                info.blocks = n / runtime->period_size;
    2123                 runtime->oss.prev_hw_ptr_interrupt = delay;
     2142                runtime->oss.prev_hw_ptr_period = delay;
    21242143                if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK)
    21252144                        snd_pcm_oss_simulate_fill(substream, delay);
     
    23812400        int nonblock;
    23822401        wait_queue_t wait;
     2402
     2403        err = nonseekable_open(inode, file);
     2404        if (err < 0)
     2405                return err;
    23832406
    23842407        pcm = snd_lookup_oss_minor_data(iminor(inode),
     
    26962719        struct snd_pcm_runtime *runtime = substream->runtime;
    26972720        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);
    26992723        else
    2700                 return snd_pcm_playback_avail(runtime) >= runtime->oss.period_frames;
     2724                return snd_pcm_playback_avail(runtime) >=
     2725                                                runtime->oss.period_frames;
    27012726}
    27022727
     
    27052730        struct snd_pcm_runtime *runtime = substream->runtime;
    27062731        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);
    27082734        else
    2709                 return snd_pcm_capture_avail(runtime) >= runtime->oss.period_frames;
     2735                return snd_pcm_capture_avail(runtime) >=
     2736                                                runtime->oss.period_frames;
    27102737}
    27112738
     
    28662893{
    28672894        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;
    28692897        int idx1;
    28702898        struct snd_pcm_oss_setup *setup, *setup1, template;
     
    29923020        .open =         snd_pcm_oss_open,
    29933021        .release =      snd_pcm_oss_release,
     3022        .llseek =       no_llseek,
    29943023        .poll =         snd_pcm_oss_poll,
    29953024#ifdef CONFIG_SND_HAVE_NEW_IOCTL
Note: See TracChangeset for help on using the changeset viewer.