This website works better with JavaScript.
Home
Help
Sign In
falkTX
/
FFmpeg
mirror of
https://github.com/falkTX/FFmpeg.git
Watch
1
Star
0
Fork
0
Code
Issues
0
Releases
338
Wiki
Activity
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
1bd26e51f3
commit
244c8d100a
2 changed files
with
2 additions
and
2 deletions
Unified View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-1
libavdevice/alsa-audio-dec.c
+1
-1
libavdevice/alsa-audio-enc.c
+ 1
- 1
libavdevice/alsa-audio-dec.c
View File
@@ -50,7 +50,7 @@
#include "alsa-audio.h"
#include "alsa-audio.h"
av_cold
static
int audio_read_header(AVFormatContext *s1,
static
av_cold int audio_read_header(AVFormatContext *s1,
AVFormatParameters *ap)
AVFormatParameters *ap)
{
{
AlsaData *s = s1->priv_data;
AlsaData *s = s1->priv_data;
+ 1
- 1
libavdevice/alsa-audio-enc.c
View File
@@ -42,7 +42,7 @@
#include "alsa-audio.h"
#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;
AlsaData *s = s1->priv_data;
AVStream *st;
AVStream *st;
Write
Preview
Loading…
Cancel
Save