comparison libvo/vo_dxr3.c @ 5497:14323f846fc8

Make fame the default encoder until lavc's mpeg1 encoder is repaired. Disable spu writes until lockup bug has been found.
author mswitch
date Fri, 05 Apr 2002 18:05:57 +0000
parents 846285e8e0b4
children 58864ce0eef7
comparison
equal deleted inserted replaced
5496:e47c6eeb1fa2 5497:14323f846fc8
134 MPG_CODEC_NON, 134 MPG_CODEC_NON,
135 MPG_CODEC_AVCODEC, 135 MPG_CODEC_AVCODEC,
136 MPG_CODEC_FAME 136 MPG_CODEC_FAME
137 }; 137 };
138 138
139 #if defined(USE_LIBAVCODEC) 139 #if defined(USE_LIBFAME)
140 static int mpeg_codec = MPG_CODEC_FAME;
141 #elif defined(USE_LIBAVCODEC)
140 static int mpeg_codec = MPG_CODEC_AVCODEC; 142 static int mpeg_codec = MPG_CODEC_AVCODEC;
141 #elif defined(USE_LIBFAME)
142 static int mpeg_codec = MPG_CODEC_FAME;
143 #else 143 #else
144 static int mpeg_codec = MPG_CODEC_NONE; 144 static int mpeg_codec = MPG_CODEC_NONE;
145 #endif 145 #endif
146 146
147 /* Resolutions and positions */ 147 /* Resolutions and positions */
508 * is turned off, and the new one (same one) is turned on 508 * is turned off, and the new one (same one) is turned on
509 */ 509 */
510 if (!noprebuf) { 510 if (!noprebuf) {
511 ioctl(fd_spu, EM8300_IOCTL_SPU_SETPTS, &vo_pts); 511 ioctl(fd_spu, EM8300_IOCTL_SPU_SETPTS, &vo_pts);
512 } 512 }
513 write(fd_spu, spued->data, spued->count); 513 /*write(fd_spu, spued->data, spued->count);*/
514 } 514 }
515 disposd++; 515 disposd++;
516 } 516 }
517 517
518 518