This website works better with JavaScript.
Home
Help
Sign In
falkTX
/
FFmpeg
mirror of
https://github.com/falkTX/FFmpeg.git
Watch
1
Star
0
Fork
0
Code
Issues
0
Releases
338
Wiki
Activity
Browse Source
Change calls to abort() to be calls to av_abort()
Originally committed as revision 921 to svn://svn.ffmpeg.org/ffmpeg/trunk
tags/v0.5
Philip Gladstone
23 years ago
parent
a782f209df
commit
42343f7e6e
4 changed files
with
6 additions
and
6 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+2
-2
libav/avienc.c
+2
-2
libav/mpeg.c
+1
-1
libav/raw.c
+1
-1
libav/rm.c
+ 2
- 2
libav/avienc.c
View File
@@ -250,7 +250,7 @@ static int avi_write_header(AVFormatContext *s)
put_le32(pb, 0);
break;
default:
abort();
a
v_a
bort();
}
end_tag(pb, strh);
@@ -266,7 +266,7 @@ static int avi_write_header(AVFormatContext *s)
}
break;
default:
abort();
a
v_a
bort();
}
end_tag(pb, strf);
end_tag(pb, list2);
+ 2
- 2
libav/mpeg.c
View File
@@ -190,7 +190,7 @@ static int mpeg_mux_init(AVFormatContext *ctx)
s->video_bound++;
break;
default:
abort();
a
v_a
bort();
}
}
@@ -238,7 +238,7 @@ static int mpeg_mux_init(AVFormatContext *ctx)
90000 * FRAME_RATE_BASE);
break;
default:
abort();
a
v_a
bort();
}
}
return 0;
+ 1
- 1
libav/raw.c
View File
@@ -377,7 +377,7 @@ int rawvideo_read_packet(AVFormatContext *s,
packet_size = (width * height * 3);
break;
default:
abort();
a
v_a
bort();
break;
}
+ 1
- 1
libav/rm.c
View File
@@ -313,7 +313,7 @@ static int rm_write_header(AVFormatContext *s)
stream->total_frames = stream->nb_packets;
break;
default:
abort();
a
v_a
bort();
}
}
Write
Preview
Loading…
Cancel
Save