diff options
author | Daniel Caujolle-Bert <f1rmb@users.sourceforge.net> | 2002-06-24 19:55:38 +0000 |
---|---|---|
committer | Daniel Caujolle-Bert <f1rmb@users.sourceforge.net> | 2002-06-24 19:55:38 +0000 |
commit | 5471d3cab7eb4edbd0d3ec3863a035b62652ce27 (patch) | |
tree | 74779af97d108b2d502d742696e86d692bd47ec6 /src | |
parent | 6ac385727ad17a79a376fb18fdff41b44a71feb8 (diff) | |
download | xine-lib-5471d3cab7eb4edbd0d3ec3863a035b62652ce27.tar.gz xine-lib-5471d3cab7eb4edbd0d3ec3863a035b62652ce27.tar.bz2 |
Remove last tranlated enums. Add --check in .po build, since it seems some
tranlators don't use a tool who check validity.
CVS patchset: 2158
CVS date: 2002/06/24 19:55:38
Diffstat (limited to 'src')
-rw-r--r-- | src/dxr3/video_out_dxr3.c | 6 | ||||
-rw-r--r-- | src/xine-utils/memcpy.c | 10 |
2 files changed, 9 insertions, 7 deletions
diff --git a/src/dxr3/video_out_dxr3.c b/src/dxr3/video_out_dxr3.c index a06b655f8..7e05faab4 100644 --- a/src/dxr3/video_out_dxr3.c +++ b/src/dxr3/video_out_dxr3.c @@ -17,7 +17,7 @@ * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA * - * $Id: video_out_dxr3.c,v 1.30 2002/06/24 17:40:44 pmhahn Exp $ + * $Id: video_out_dxr3.c,v 1.31 2002/06/24 19:55:38 f1rmb Exp $ */ /* mpeg1 encoding video out plugin for the dxr3. @@ -211,7 +211,7 @@ vo_driver_t *init_video_out_plugin(config_values_t *config, void *visual_gen) printf("rte, "); #endif #endif - available_encoders[encoder] = _("none"); + available_encoders[encoder] = "none"; available_encoders[encoder + 1] = NULL; #if LOG_VID printf("none\n"); @@ -233,7 +233,7 @@ vo_driver_t *init_video_out_plugin(config_values_t *config, void *visual_gen) return 0; } #endif - if (strcmp(available_encoders[encoder], _("none")) == 0) + if (strcmp(available_encoders[encoder], "none") == 0) printf("video_out_dxr3: Mpeg encoding disabled.\n" "video_out_dxr3: that's ok, you don't need it for mpeg video like DVDs, but\n" "video_out_dxr3: you will not be able to play non-mpeg content using this video out\n" diff --git a/src/xine-utils/memcpy.c b/src/xine-utils/memcpy.c index daaec310e..a27cce1d3 100644 --- a/src/xine-utils/memcpy.c +++ b/src/xine-utils/memcpy.c @@ -421,14 +421,16 @@ void xine_probe_fast_memcpy(config_values_t *config) char *buf1, *buf2; int i, j, best; int config_flags = -1; - static char *memcpy_methods[] = {"probe", "glibc", + static char *memcpy_methods[] = { + "probe", "glibc", #ifdef ARCH_X86 - "kernel", "mmx", "mmxext", "sse", + "kernel", "mmx", "mmxext", "sse", #endif #ifdef ARCH_PPC - "ppcasm_memcpy", "ppcasm_cacheable_memcpy", + "ppcasm_memcpy", "ppcasm_cacheable_memcpy", #endif - NULL}; + NULL + }; config_flags = xine_mm_accel(); |