Update instructions to include patch.

This commit is contained in:
Steve Checkoway
2006-01-16 03:03:44 +00:00
parent 4fa6ab0e88
commit b7aef41e4b
2 changed files with 24 additions and 0 deletions
+1
View File
@@ -13,6 +13,7 @@ lua-5.0
Directions:
1. Decompress all of those in the Libraries directory (libresample can be
copied from stepmania/src/libresample).
1.5. Patch ffmpeg using ffmpeg-0.4.9-pre1-sm.patch.
2. Some of these need to have ./configure run before they will build. I know
that ffmpeg does. Others might as well. ffmpeg's configure needs to be run as
./configure --disable-vhook
@@ -0,0 +1,23 @@
diff -ru ffmpeg-0.4.9-pre1/libavcodec/mpeg12.c ffmpeg-0.4.9-pre1-sm/libavcodec/mpeg12.c
--- ffmpeg-0.4.9-pre1/libavcodec/mpeg12.c Wed Jun 30 19:12:21 2004
+++ ffmpeg-0.4.9-pre1-sm/libavcodec/mpeg12.c Mon Jan 24 23:45:27 2005
@@ -2769,12 +2769,14 @@
MpegEncContext *s2 = &s->mpeg_enc_ctx;
dprintf("fill_buffer\n");
- /* special case for last picture */
- if (buf_size == 0 && s2->low_delay==0 && s2->next_picture_ptr) {
- *picture= *(AVFrame*)s2->next_picture_ptr;
- s2->next_picture_ptr= NULL;
+ if (buf_size == 0) {
+ /* special case for last picture */
+ if (s2->low_delay==0 && s2->next_picture_ptr) {
+ *picture= *(AVFrame*)s2->next_picture_ptr;
+ s2->next_picture_ptr= NULL;
- *data_size = sizeof(AVFrame);
+ *data_size = sizeof(AVFrame);
+ }
return 0;
}