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
swr: fix "control reaches end of non-void function" compiler warning.
tags/n0.9
Clément Bœsch
14 years ago
parent
809631af1a
commit
7cdfce4f63
1 changed files
with
1 additions
and
1 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-1
libswresample/swresample_test.c
+ 1
- 1
libswresample/swresample_test.c
View File
@@ -44,7 +44,7 @@ static double get(const uint8_t *a[], int ch, int index, int ch_count, enum AVSa
case AV_SAMPLE_FMT_S32: return ((const int32_t*)p)[index]/2147483647.0;
case AV_SAMPLE_FMT_FLT: return ((const float *)p)[index];
case AV_SAMPLE_FMT_DBL: return ((const double *)p)[index];
default: av_assert
2
(0);
default: av_assert
0
(0);
}
}
Write
Preview
Loading…
Cancel
Save