diff options
author | Måns Rullgård <mans@mansr.com> | 2002-10-06 23:06:06 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2002-10-06 23:06:06 +0000 |
commit | bb76a117b115e8c1335a7fd35f2998dc18895225 (patch) | |
tree | 0c0a255c089fa83ea174cff8a4ad4f79ccfc62f1 /libav/audio.c | |
parent | 0298af4887e4ffa70f1f2ff4dd2dbe819cdace97 (diff) | |
download | ffmpeg-bb76a117b115e8c1335a7fd35f2998dc18895225.tar.gz |
c syntax update patch by (mru at users dot sourceforge dot net (Måns Rullgård))
Originally committed as revision 1008 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libav/audio.c')
-rw-r--r-- | libav/audio.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libav/audio.c b/libav/audio.c index 42f074d7be..bef3e466cc 100644 --- a/libav/audio.c +++ b/libav/audio.c @@ -280,7 +280,7 @@ AVInputFormat audio_in_format = { audio_read_header, audio_read_packet, audio_read_close, - flags: AVFMT_NOFILE, + .flags = AVFMT_NOFILE, }; AVOutputFormat audio_out_format = { @@ -301,7 +301,7 @@ AVOutputFormat audio_out_format = { audio_write_header, audio_write_packet, audio_write_trailer, - flags: AVFMT_NOFILE, + .flags = AVFMT_NOFILE, }; int audio_init(void) |