Commit 42343f7e authored by Philip Gladstone's avatar Philip Gladstone

Change calls to abort() to be calls to av_abort()

Originally committed as revision 921 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent a782f209
...@@ -250,7 +250,7 @@ static int avi_write_header(AVFormatContext *s) ...@@ -250,7 +250,7 @@ static int avi_write_header(AVFormatContext *s)
put_le32(pb, 0); put_le32(pb, 0);
break; break;
default: default:
abort(); av_abort();
} }
end_tag(pb, strh); end_tag(pb, strh);
...@@ -266,7 +266,7 @@ static int avi_write_header(AVFormatContext *s) ...@@ -266,7 +266,7 @@ static int avi_write_header(AVFormatContext *s)
} }
break; break;
default: default:
abort(); av_abort();
} }
end_tag(pb, strf); end_tag(pb, strf);
end_tag(pb, list2); end_tag(pb, list2);
......
...@@ -190,7 +190,7 @@ static int mpeg_mux_init(AVFormatContext *ctx) ...@@ -190,7 +190,7 @@ static int mpeg_mux_init(AVFormatContext *ctx)
s->video_bound++; s->video_bound++;
break; break;
default: default:
abort(); av_abort();
} }
} }
...@@ -238,7 +238,7 @@ static int mpeg_mux_init(AVFormatContext *ctx) ...@@ -238,7 +238,7 @@ static int mpeg_mux_init(AVFormatContext *ctx)
90000 * FRAME_RATE_BASE); 90000 * FRAME_RATE_BASE);
break; break;
default: default:
abort(); av_abort();
} }
} }
return 0; return 0;
......
...@@ -377,7 +377,7 @@ int rawvideo_read_packet(AVFormatContext *s, ...@@ -377,7 +377,7 @@ int rawvideo_read_packet(AVFormatContext *s,
packet_size = (width * height * 3); packet_size = (width * height * 3);
break; break;
default: default:
abort(); av_abort();
break; break;
} }
......
...@@ -313,7 +313,7 @@ static int rm_write_header(AVFormatContext *s) ...@@ -313,7 +313,7 @@ static int rm_write_header(AVFormatContext *s)
stream->total_frames = stream->nb_packets; stream->total_frames = stream->nb_packets;
break; break;
default: default:
abort(); av_abort();
} }
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment