aboutsummaryrefslogtreecommitdiffstats
path: root/libav/mpeg.c
diff options
context:
space:
mode:
authorPhilip Gladstone <philipjsg@users.sourceforge.net>2002-09-12 02:34:01 +0000
committerPhilip Gladstone <philipjsg@users.sourceforge.net>2002-09-12 02:34:01 +0000
commit42343f7e6e92dcd7d134e288cef6d1005c9ca666 (patch)
tree50419265fcc8337f7a0c4413fd32fd12b2a50a78 /libav/mpeg.c
parenta782f209df44c372545ecf8ef29d17fedaa8e75e (diff)
downloadffmpeg-42343f7e6e92dcd7d134e288cef6d1005c9ca666.tar.gz
Change calls to abort() to be calls to av_abort()
Originally committed as revision 921 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libav/mpeg.c')
-rw-r--r--libav/mpeg.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libav/mpeg.c b/libav/mpeg.c
index 02a8b29bea..f6ceaeedbe 100644
--- a/libav/mpeg.c
+++ b/libav/mpeg.c
@@ -190,7 +190,7 @@ static int mpeg_mux_init(AVFormatContext *ctx)
s->video_bound++;
break;
default:
- abort();
+ av_abort();
}
}
@@ -238,7 +238,7 @@ static int mpeg_mux_init(AVFormatContext *ctx)
90000 * FRAME_RATE_BASE);
break;
default:
- abort();
+ av_abort();
}
}
return 0;