diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2008-02-19 22:09:08 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2008-02-19 22:09:08 +0000 |
commit | cea9642014e833799eca40db03530ed0002f99d8 (patch) | |
tree | 98106d94c464ea0bf7da573ab1e9e853c8db2419 /libavformat/segafilm.c | |
parent | a56dcc57931fd19ef0d567ac60bc3973103f9890 (diff) | |
download | ffmpeg-cea9642014e833799eca40db03530ed0002f99d8.tar.gz |
Fix ;;
Originally committed as revision 12153 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat/segafilm.c')
-rw-r--r-- | libavformat/segafilm.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/segafilm.c b/libavformat/segafilm.c index 3cea07fef9..5b149a7ca5 100644 --- a/libavformat/segafilm.c +++ b/libavformat/segafilm.c @@ -107,7 +107,7 @@ static int film_read_header(AVFormatContext *s, /* normal Saturn .cpk files; 32-byte header */ if (get_buffer(pb, scratch, 32) != 32) return AVERROR(EIO); - film->audio_samplerate = AV_RB16(&scratch[24]);; + film->audio_samplerate = AV_RB16(&scratch[24]); film->audio_channels = scratch[21]; film->audio_bits = scratch[22]; if (film->audio_bits == 8) |