Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2004-10-01 17:16:16 +0400
committerMichael Niedermayer <michaelni@gmx.at>2004-10-01 17:16:16 +0400
commit71c32f19b346f565c23d282f327e84a6af39edc7 (patch)
treeaeed385c079434edbc9e985ae60bf68538d468cd /libavformat/rm.c
parent9fe5a7b83107051812a00eaebb01db11d7378980 (diff)
do not call (av_)abort()
Originally committed as revision 3544 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat/rm.c')
-rw-r--r--libavformat/rm.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/rm.c b/libavformat/rm.c
index de16a3033c..59888e2cdf 100644
--- a/libavformat/rm.c
+++ b/libavformat/rm.c
@@ -315,7 +315,7 @@ static int rm_write_header(AVFormatContext *s)
stream->total_frames = stream->nb_packets;
break;
default:
- av_abort();
+ return -1;
}
}