Browse Source

consistency with other files: av_cold static ---> static av_cold

Originally committed as revision 20662 to svn://svn.ffmpeg.org/ffmpeg/trunk
tags/v0.6
Ivo van Poorten 15 years ago
parent
commit
244c8d100a
2 changed files with 2 additions and 2 deletions
  1. +1
    -1
      libavdevice/alsa-audio-dec.c
  2. +1
    -1
      libavdevice/alsa-audio-enc.c

+ 1
- 1
libavdevice/alsa-audio-dec.c View File

@@ -50,7 +50,7 @@

#include "alsa-audio.h"

av_cold static int audio_read_header(AVFormatContext *s1,
static av_cold int audio_read_header(AVFormatContext *s1,
AVFormatParameters *ap)
{
AlsaData *s = s1->priv_data;


+ 1
- 1
libavdevice/alsa-audio-enc.c View File

@@ -42,7 +42,7 @@

#include "alsa-audio.h"

av_cold static int audio_write_header(AVFormatContext *s1)
static av_cold int audio_write_header(AVFormatContext *s1)
{
AlsaData *s = s1->priv_data;
AVStream *st;


Loading…
Cancel
Save