summaryrefslogtreecommitdiff
path: root/ffmpeg.c
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2013-10-01 18:28:11 +0200
committerMichael Niedermayer <michaelni@gmx.at>2013-10-02 12:59:39 +0200
commit0425fd7eb2186e40e372f9b92c6456b293b8ae4a (patch)
treebb1dccae386730aafd8d61e4391953db8f64aa16 /ffmpeg.c
parente31a239fea6576a22f59a028d826d95ff2c72c39 (diff)
ffmpeg: dont return reserved values
Found-by: Daemon404 Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'ffmpeg.c')
-rw-r--r--ffmpeg.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ffmpeg.c b/ffmpeg.c
index 2e084a49a0..d1c841fb8b 100644
--- a/ffmpeg.c
+++ b/ffmpeg.c
@@ -3421,7 +3421,7 @@ int main(int argc, char **argv)
av_log(NULL, AV_LOG_DEBUG, "%"PRIu64" frames successfully decoded, %"PRIu64" decoding errors\n",
decode_error_stat[0], decode_error_stat[1]);
if (2*decode_error_stat[0] < decode_error_stat[1])
- exit_program(254);
+ exit_program(69);
exit_program(received_nb_signals ? 255 : 0);
return 0;