summaryrefslogtreecommitdiff
path: root/libavformat/mpeg.c
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2004-10-01 13:16:16 +0000
committerMichael Niedermayer <michaelni@gmx.at>2004-10-01 13:16:16 +0000
commit71c32f19b346f565c23d282f327e84a6af39edc7 (patch)
treeaeed385c079434edbc9e985ae60bf68538d468cd /libavformat/mpeg.c
parent9fe5a7b83107051812a00eaebb01db11d7378980 (diff)
do not call (av_)abort()
Originally committed as revision 3544 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat/mpeg.c')
-rw-r--r--libavformat/mpeg.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/mpeg.c b/libavformat/mpeg.c
index adf871a669..cf6cb0b375 100644
--- a/libavformat/mpeg.c
+++ b/libavformat/mpeg.c
@@ -314,7 +314,7 @@ static int mpeg_mux_init(AVFormatContext *ctx)
s->video_bound++;
break;
default:
- av_abort();
+ return -1;
}
}
/* if no SCR, use first stream (audio) */