[Mplayerxp-cvslog] SF.net SVN: mplayerxp:[149] mplayerxp
Brought to you by:
olov
From: <nic...@us...> - 2010-08-18 14:01:17
|
Revision: 149 http://mplayerxp.svn.sourceforge.net/mplayerxp/?rev=149&view=rev Author: nickols_k Date: 2010-08-18 14:01:11 +0000 (Wed, 18 Aug 2010) Log Message: ----------- free project from complex philosophical terms Modified Paths: -------------- COPYING TOOLS/mem2dump.c mplayerxp/dec_ahead.c mplayerxp/libmpdemux/demux_avi.c mplayerxp/libmpdemux/demux_mkv.c mplayerxp/libmpdemux/demux_pva.c mplayerxp/libmpdemux/demux_real.c mplayerxp/libmpdemux/librtsp/rtsp_rtp.c mplayerxp/libmpdemux/s_file.c mplayerxp/libmpdemux/stream.h mplayerxp/loader/pe_image.c mplayerxp/loader/wine/avifmt.h mplayerxp/loader/wine/winnt.h mplayerxp/loader/wine/winuser.h mplayerxp/nls/help_mp-cz.h mplayerxp/nls/help_mp-dk.h mplayerxp/nls/help_mp-en.h mplayerxp/nls/help_mp-es.h mplayerxp/nls/help_mp-fr.h mplayerxp/nls/help_mp-nl.h mplayerxp/nls/help_mp-no.h mplayerxp/nls/help_mp-ro.h Modified: COPYING =================================================================== --- COPYING 2010-07-27 14:02:33 UTC (rev 148) +++ COPYING 2010-08-18 14:01:11 UTC (rev 149) @@ -278,62 +278,3 @@ POSSIBILITY OF SUCH DAMAGES. END OF TERMS AND CONDITIONS - - Appendix: How to Apply These Terms to Your New Programs - - If you develop a new program, and you want it to be of the greatest -possible use to the public, the best way to achieve this is to make it -free software which everyone can redistribute and change under these terms. - - To do so, attach the following notices to the program. It is safest -to attach them to the start of each source file to most effectively -convey the exclusion of warranty; and each file should have at least -the "copyright" line and a pointer to where the full notice is found. - - <one line to give the program's name and a brief idea of what it does.> - Copyright (C) 19yy <name of author> - - This program is free software; you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by - the Free Software Foundation; either version 2 of the License, or - (at your option) any later version. - - This program is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. - - You should have received a copy of the GNU General Public License - along with this program; if not, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -Also add information on how to contact you by electronic and paper mail. - -If the program is interactive, make it output a short notice like this -when it starts in an interactive mode: - - Gnomovision version 69, Copyright (C) 19yy name of author - Gnomovision comes with ABSOLUTELY NO WARRANTY; for details type `show w'. - This is free software, and you are welcome to redistribute it - under certain conditions; type `show c' for details. - -The hypothetical commands `show w' and `show c' should show the appropriate -parts of the General Public License. Of course, the commands you use may -be called something other than `show w' and `show c'; they could even be -mouse-clicks or menu items--whatever suits your program. - -You should also get your employer (if you work as a programmer) or your -school, if any, to sign a "copyright disclaimer" for the program, if -necessary. Here is a sample; alter the names: - - Yoyodyne, Inc., hereby disclaims all copyright interest in the program - `Gnomovision' (which makes passes at compilers) written by James Hacker. - - <signature of Ty Coon>, 1 April 1989 - Ty Coon, President of Vice - -This General Public License does not permit incorporating your program into -proprietary programs. If your program is a subroutine library, you may -consider it more useful to permit linking proprietary applications with the -library. If this is what you want to do, use the GNU Library General -Public License instead of this License. Modified: TOOLS/mem2dump.c =================================================================== --- TOOLS/mem2dump.c 2010-07-27 14:02:33 UTC (rev 148) +++ TOOLS/mem2dump.c 2010-08-18 14:01:11 UTC (rev 149) @@ -1,6 +1,6 @@ /* bios2dump.c - Was designed to dump memory block to file. - Usage: as argument requires absolute address of memory dump and its lenght + Usage: as argument requires a full address of memory dump and its lenght (int hexadecimal form). as output - will write file which will named: memADDR_LEN.dump where: ADDR - given address of memory Modified: mplayerxp/dec_ahead.c =================================================================== --- mplayerxp/dec_ahead.c 2010-07-27 14:02:33 UTC (rev 148) +++ mplayerxp/dec_ahead.c 2010-08-18 14:01:11 UTC (rev 149) @@ -87,7 +87,7 @@ extern int loop_times; /* it's const for xp mode */ extern float rel_seek_secs; /* FIXME: in hope that user will not rewind */ -extern int abs_seek_pos; /* the movie at end of file :( */ +extern int sof_seek_pos; /* the movie at end of file :( */ extern int decore_audio( int xp_id ); extern int mpxp_seek_time; Modified: mplayerxp/libmpdemux/demux_avi.c =================================================================== --- mplayerxp/libmpdemux/demux_avi.c 2010-07-27 14:02:33 UTC (rev 148) +++ mplayerxp/libmpdemux/demux_avi.c 2010-08-18 14:01:11 UTC (rev 149) @@ -1284,7 +1284,7 @@ // bad video header, try to get number of frames from audio if(sh_audio && sh_audio->wf->nAvgBytesPerSec) priv->numberofframes=sh_video->fps*sh_audio->audio.dwLength/sh_audio->audio.dwRate*sh_audio->audio.dwScale; if(priv->numberofframes<=1){ - MSG_WARN("Could not determine number of frames (for absolute seek)\n"); + MSG_WARN("Could not determine number of frames (for SOF seek)\n"); priv->numberofframes=0; } @@ -1351,7 +1351,7 @@ int i; if(flags&DEMUX_SEEK_SET){ - // seek absolute + // seek SOF video_chunk_pos=0; } Modified: mplayerxp/libmpdemux/demux_mkv.c =================================================================== --- mplayerxp/libmpdemux/demux_mkv.c 2010-07-27 14:02:33 UTC (rev 148) +++ mplayerxp/libmpdemux/demux_mkv.c 2010-08-18 14:01:11 UTC (rev 149) @@ -3862,7 +3862,7 @@ (int64_t) mkv_d->indexes[i].timecode * mkv_d->tc_scale / 1000000.0; if ((flags & 1 || target_timecode <= mkv_d->last_pts*1000)) { - // Absolute seek or seek backward: find the last index + // SOF seek or seek backward: find the last index // position before target time if (diff < 0 || diff >= min_diff) continue; Modified: mplayerxp/libmpdemux/demux_pva.c =================================================================== --- mplayerxp/libmpdemux/demux_pva.c 2010-07-27 14:02:33 UTC (rev 148) +++ mplayerxp/libmpdemux/demux_pva.c 2010-08-18 14:01:11 UTC (rev 149) @@ -480,11 +480,11 @@ total_bitrate=((sh_audio_t *)demuxer->audio->sh)->i_bps + ((sh_video_t *)demuxer->video->sh)->i_bps; /* - * Compute absolute offset inside the stream. Approximate total bitrate with sum of bitrates + * Compute SOF offset inside the stream. Approximate total bitrate with sum of bitrates * reported by the audio and video codecs. The seek is not accurate because, just like * with MPEG streams, the bitrate is not constant. Moreover, we do not take into account * the overhead caused by PVA and PES headers. - * If the calculated absolute offset is negative, seek to the beginning of the file. + * If the calculated SOF offset is negative, seek to the beginning of the file. */ dest_offset=(flags&DEMUX_SEEK_SET?demuxer->movi_start:stream_tell(demuxer->stream))+rel_seek_secs*total_bitrate; Modified: mplayerxp/libmpdemux/demux_real.c =================================================================== --- mplayerxp/libmpdemux/demux_real.c 2010-07-27 14:02:33 UTC (rev 148) +++ mplayerxp/libmpdemux/demux_real.c 2010-08-18 14:01:11 UTC (rev 149) @@ -1524,7 +1524,7 @@ return; if (flags & DEMUX_SEEK_SET) - /* seek absolute */ + /* seek SOF */ priv->current_apacket = priv->current_vpacket = 0; if ((streams & 1) && priv->current_vpacket >= priv->index_table_size[vid]) Modified: mplayerxp/libmpdemux/librtsp/rtsp_rtp.c =================================================================== --- mplayerxp/libmpdemux/librtsp/rtsp_rtp.c 2010-07-27 14:02:33 UTC (rev 148) +++ mplayerxp/libmpdemux/librtsp/rtsp_rtp.c 2010-08-18 14:01:11 UTC (rev 149) @@ -613,7 +613,7 @@ rtsp_schedule_field (rtsp_session, temp_buf); /* 10. check for the media control URL type and initiate RTSP SETUP */ - if (!strncmp (rtp_session->control_url, "rtsp://", 7)) /* absolute URL */ + if (!strncmp (rtp_session->control_url, "rtsp://", 7)) /* full URL */ statut = rtsp_request_setup (rtsp_session, rtp_session->control_url, NULL); else /* relative URL */ Modified: mplayerxp/libmpdemux/s_file.c =================================================================== --- mplayerxp/libmpdemux/s_file.c 2010-07-27 14:02:33 UTC (rev 148) +++ mplayerxp/libmpdemux/s_file.c 2010-08-18 14:01:11 UTC (rev 149) @@ -34,7 +34,7 @@ if(stream->end_pos == -1) stream->type = STREAMTYPE_STREAM; else stream->type = STREAMTYPE_SEEKABLE; /* decreasing number of packet from 256 to 10 speedups cache2 from 3.27% to 1.26% - with absolute speed 1.04% for -nocache */ + with full speed 1.04% for -nocache */ /* Note: Please locate sector_size changinf after all read/write operations of open() function */ stream->sector_size=stream_cache_size?stream_cache_size*1024/10:STREAM_BUFFER_SIZE; ((file_priv_t*)stream->priv)->spos = 0; Modified: mplayerxp/libmpdemux/stream.h =================================================================== --- mplayerxp/libmpdemux/stream.h 2010-07-27 14:02:33 UTC (rev 148) +++ mplayerxp/libmpdemux/stream.h 2010-08-18 14:01:11 UTC (rev 149) @@ -40,7 +40,7 @@ /** Stream description */ typedef struct stream_s{ int fd; /**< file handler */ - off_t pos; /**< absolute offset from begin of stream */ + off_t pos; /**< SOF offset from begin of stream */ int eof; /**< indicates EOF */ int type; /**< properties of the stream (see STREAMTYPE_ for detail) */ int file_format; /**< detected file format (by http:// protocol for example) */ @@ -179,7 +179,7 @@ /** Seeks on new stream position * @param _this points structure which identifies stream - * @param off absolute offset from begin of stream + * @param off SOF offset from begin of stream * @return real offset after seeking **/ off_t (* __FASTCALL__ seek)(stream_t *_this,off_t off); Modified: mplayerxp/loader/pe_image.c =================================================================== --- mplayerxp/loader/pe_image.c 2010-07-27 14:02:33 UTC (rev 148) +++ mplayerxp/loader/pe_image.c 2010-08-18 14:01:11 UTC (rev 149) @@ -392,7 +392,7 @@ // TRACE_(fixup)("patching %x type %x\n", offset, type); switch(type) { - case IMAGE_REL_BASED_ABSOLUTE: break; + case IMAGE_REL_BASED_FULL: break; case IMAGE_REL_BASED_HIGH: *(short*)(page+offset) += hdelta; break; Modified: mplayerxp/loader/wine/avifmt.h =================================================================== --- mplayerxp/loader/wine/avifmt.h 2010-07-27 14:02:33 UTC (rev 148) +++ mplayerxp/loader/wine/avifmt.h 2010-08-18 14:01:11 UTC (rev 149) @@ -240,14 +240,14 @@ typedef struct __attribute__((packed)) _avisuperindex_entry { - QWORD qwOffset; // absolute file offset + QWORD qwOffset; // full file offset DWORD dwSize; // size of index chunk at this offset DWORD dwDuration; // time span in stream ticks } avisuperindex_entry; typedef struct __attribute__((packed)) _avistdindex_entry { - DWORD dwOffset; // qwBaseOffset + this is absolute file offset + DWORD dwOffset; // qwBaseOffset + this is full file offset DWORD dwSize; // bit 31 is set if this is NOT a keyframe } avistdindex_entry; Modified: mplayerxp/loader/wine/winnt.h =================================================================== --- mplayerxp/loader/wine/winnt.h 2010-07-27 14:02:33 UTC (rev 148) +++ mplayerxp/loader/wine/winnt.h 2010-08-18 14:01:11 UTC (rev 149) @@ -1494,7 +1494,7 @@ #include "poppack.h" #define IMAGE_SYM_UNDEFINED (SHORT)0 -#define IMAGE_SYM_ABSOLUTE (SHORT)-1 +#define IMAGE_SYM_FULL (SHORT)-1 #define IMAGE_SYM_DEBUG (SHORT)-2 #define IMAGE_SYM_TYPE_NULL 0x0000 @@ -1685,7 +1685,7 @@ #define IMAGE_SIZEOF_RELOCATION 10 /* generic relocation types */ -#define IMAGE_REL_BASED_ABSOLUTE 0 +#define IMAGE_REL_BASED_FULL 0 #define IMAGE_REL_BASED_HIGH 1 #define IMAGE_REL_BASED_LOW 2 #define IMAGE_REL_BASED_HIGHLOW 3 @@ -1699,7 +1699,7 @@ #define IMAGE_REL_BASED_HIGH3ADJ 11 /* I386 relocation types */ -#define IMAGE_REL_I386_ABSOLUTE 0 +#define IMAGE_REL_I386_FULL 0 #define IMAGE_REL_I386_DIR16 1 #define IMAGE_REL_I386_REL16 2 #define IMAGE_REL_I386_DIR32 6 @@ -1710,7 +1710,7 @@ #define IMAGE_REL_I386_REL32 20 /* MIPS relocation types */ -#define IMAGE_REL_MIPS_ABSOLUTE 0x0000 +#define IMAGE_REL_MIPS_FULL 0x0000 #define IMAGE_REL_MIPS_REFHALF 0x0001 #define IMAGE_REL_MIPS_REFWORD 0x0002 #define IMAGE_REL_MIPS_JMPADDR 0x0003 @@ -1727,7 +1727,7 @@ #define IMAGE_REL_MIPS_PAIR 0x0025 /* ALPHA relocation types */ -#define IMAGE_REL_ALPHA_ABSOLUTE 0x0000 +#define IMAGE_REL_ALPHA_FULL 0x0000 #define IMAGE_REL_ALPHA_REFLONG 0x0001 #define IMAGE_REL_ALPHA_REFQUAD 0x0002 #define IMAGE_REL_ALPHA_GPREL 0x0003 @@ -1753,7 +1753,7 @@ #define IMAGE_REL_ALPHA_GPRELHI 0x0017 /* PowerPC relocation types */ -#define IMAGE_REL_PPC_ABSOLUTE 0x0000 +#define IMAGE_REL_PPC_FULL 0x0000 #define IMAGE_REL_PPC_ADDR64 0x0001 #define IMAGE_REL_PPC_ADDR 0x0002 #define IMAGE_REL_PPC_ADDR24 0x0003 @@ -1783,7 +1783,7 @@ #define IMAGE_REL_PPC_TOCDEFN 0x0800 /* SH3 ? relocation type */ -#define IMAGE_REL_SH3_ABSOLUTE 0x0000 +#define IMAGE_REL_SH3_FULL 0x0000 #define IMAGE_REL_SH3_DIRECT16 0x0001 #define IMAGE_REL_SH3_DIRECT 0x0002 #define IMAGE_REL_SH3_DIRECT8 0x0003 @@ -1802,7 +1802,7 @@ #define IMAGE_REL_SH3_DIRECT32_NB 0x0010 /* ARM (Archimedes?) relocation types */ -#define IMAGE_REL_ARM_ABSOLUTE 0x0000 +#define IMAGE_REL_ARM_FULL 0x0000 #define IMAGE_REL_ARM_ADDR 0x0001 #define IMAGE_REL_ARM_ADDR32NB 0x0002 #define IMAGE_REL_ARM_BRANCH24 0x0003 @@ -1811,7 +1811,7 @@ #define IMAGE_REL_ARM_SECREL 0x000F /* IA64 relocation types */ -#define IMAGE_REL_IA64_ABSOLUTE 0x0000 +#define IMAGE_REL_IA64_FULL 0x0000 #define IMAGE_REL_IA64_IMM14 0x0001 #define IMAGE_REL_IA64_IMM22 0x0002 #define IMAGE_REL_IA64_IMM64 0x0003 Modified: mplayerxp/loader/wine/winuser.h =================================================================== --- mplayerxp/loader/wine/winuser.h 2010-07-27 14:02:33 UTC (rev 148) +++ mplayerxp/loader/wine/winuser.h 2010-08-18 14:01:11 UTC (rev 149) @@ -1982,7 +1982,7 @@ #define MOUSEEVENTF_MIDDLEDOWN 0x0020 #define MOUSEEVENTF_MIDDLEUP 0x0040 #define MOUSEEVENTF_WHEEL 0x0800 -#define MOUSEEVENTF_ABSOLUTE 0x8000 +#define MOUSEEVENTF_ABS 0x8000 /* ExitWindows() flags */ #define EW_RESTARTWINDOWS 0x0042 Modified: mplayerxp/nls/help_mp-cz.h =================================================================== --- mplayerxp/nls/help_mp-cz.h 2010-07-27 14:02:33 UTC (rev 148) +++ mplayerxp/nls/help_mp-cz.h 2010-08-18 14:01:11 UTC (rev 149) @@ -136,7 +136,7 @@ #define MSGTR_NI_Message "%s NEPROKLÁDANÝ formát souboru AVI!\n" #define MSGTR_UsingNINI "Používám NEPROKLÁDANÝ poškozený formát souboru AVI!\n" //tohle taky nějak opravit -#define MSGTR_CouldntDetFNo "Nemohu určit počet snímků (pro absolutní posun) \n" +#define MSGTR_CouldntDetFNo "Nemohu určit počet snímků (pro SOFní posun) \n" #define MSGTR_CantSeekRawAVI "Nelze se posouvat v surových (raw) .AVI proudech! (Potřebuji index, zkuste použít volbu -idx !) \n" #define MSGTR_CantSeekFile "Nemohu posouvat v tomto souboru! \n" Modified: mplayerxp/nls/help_mp-dk.h =================================================================== --- mplayerxp/nls/help_mp-dk.h 2010-07-27 14:02:33 UTC (rev 148) +++ mplayerxp/nls/help_mp-dk.h 2010-08-18 14:01:11 UTC (rev 149) @@ -134,7 +134,7 @@ #define MSGTR_NI_Message "%s NON-INTERLEAVED AVI fil-format!\n" #define MSGTR_UsingNINI "Bruger NON-INTERLEAVED ødelagt AVI fil-format!\n" -#define MSGTR_CouldntDetFNo "Kunne ikke finde antallet af billeder (for en absolute søgning) \n" +#define MSGTR_CouldntDetFNo "Kunne ikke finde antallet af billeder (for en SOF søgning) \n" #define MSGTR_CantSeekRawAVI "Kan ikke søge i rå .AVI streams! (manglende index, prøv med -idx!) \n" #define MSGTR_CantSeekFile "Kan ikke søge i denne fil! \n" #define MSGTR_EncryptedVOB "Krypteret VOB fil (ikke kompileret med libcss support)! Læs filen DOCS/cd-dvd.html\n" Modified: mplayerxp/nls/help_mp-en.h =================================================================== --- mplayerxp/nls/help_mp-en.h 2010-07-27 14:02:33 UTC (rev 148) +++ mplayerxp/nls/help_mp-en.h 2010-08-18 14:01:11 UTC (rev 149) @@ -377,7 +377,7 @@ #define MSGTR_UsingNINI "Using NON-INTERLEAVED Broken AVI file-format!\n" #endif #ifndef MSGTR_CouldntDetFNo -#define MSGTR_CouldntDetFNo "Couldn't determine number of frames (for absolute seek) \n" +#define MSGTR_CouldntDetFNo "Couldn't determine number of frames (for SOF seek) \n" #endif #ifndef MSGTR_CantSeekRawAVI #define MSGTR_CantSeekRawAVI "Can't seek in raw .AVI streams! (index required, try with the -idx switch!) \n" Modified: mplayerxp/nls/help_mp-es.h =================================================================== --- mplayerxp/nls/help_mp-es.h 2010-07-27 14:02:33 UTC (rev 148) +++ mplayerxp/nls/help_mp-es.h 2010-08-18 14:01:11 UTC (rev 149) @@ -134,7 +134,7 @@ #define MSGTR_NI_Message "%s formato de AVI 'NON-INTERLEAVED'!\n" #define MSGTR_UsingNINI "Usando formato de AVI roto 'NON-INTERLEAVED'!\n" -#define MSGTR_CouldntDetFNo "No se puede determinar el número de cuadros (para una búsqueda absoluta)\n" +#define MSGTR_CouldntDetFNo "No se puede determinar el número de cuadros (para una búsqueda SOF)\n" #define MSGTR_CantSeekRawAVI "No se puede avanzar/retroceder en un stream crudo .AVI! (se requiere índice, pruebe con -idx!) \n" #define MSGTR_CantSeekFile "No se puede avanzar/retroceder en este archivo! \n" Modified: mplayerxp/nls/help_mp-fr.h =================================================================== --- mplayerxp/nls/help_mp-fr.h 2010-07-27 14:02:33 UTC (rev 148) +++ mplayerxp/nls/help_mp-fr.h 2010-08-18 14:01:11 UTC (rev 149) @@ -138,7 +138,7 @@ #define MSGTR_NI_Message "%s format de fichier AVI NON-ENTRELACÉ!\n" #define MSGTR_UsingNINI "Utilise fichier de format AVI NON-ENTRELACÉ défectueux!\n" -#define MSGTR_CouldntDetFNo "Ne peut déterminer le nombre de frames (pour recherche absolue) \n" +#define MSGTR_CouldntDetFNo "Ne peut déterminer le nombre de frames (pour recherche SOF) \n" #define MSGTR_CantSeekRawAVI "Ne peut chercher dans un flux .AVI brut! (index requis, essayez l'option -idx!)\n" #define MSGTR_CantSeekFile "Ne peut chercher dans ce fichier! \n" Modified: mplayerxp/nls/help_mp-nl.h =================================================================== --- mplayerxp/nls/help_mp-nl.h 2010-07-27 14:02:33 UTC (rev 148) +++ mplayerxp/nls/help_mp-nl.h 2010-08-18 14:01:11 UTC (rev 149) @@ -132,7 +132,7 @@ #define MSGTR_NI_Message "%s NON-INTERLEAVED AVI bestandsformaat!\n" #define MSGTR_UsingNINI "NON-INTERLEAVED Broken AVI bestandsformaat wordt gebruikt!\n" -#define MSGTR_CouldntDetFNo "Kon het aantal frames niet bepalen (voor absolute verplaatsing) \n" +#define MSGTR_CouldntDetFNo "Kon het aantal frames niet bepalen (voor SOF verplaatsing) \n" #define MSGTR_CantSeekRawAVI "Kan niet in raw .AVI streams verplaatsen! (index nodig, probeer met de -idx optie!) \n" #define MSGTR_CantSeekFile "Kan niet verplaatsen in dit bestand! \n" Modified: mplayerxp/nls/help_mp-no.h =================================================================== --- mplayerxp/nls/help_mp-no.h 2010-07-27 14:02:33 UTC (rev 148) +++ mplayerxp/nls/help_mp-no.h 2010-08-18 14:01:11 UTC (rev 149) @@ -133,7 +133,7 @@ #define MSGTR_NI_Message "%s IKKE-INTERLEAVED AVI filformat!\n" #define MSGTR_UsingNINI "Bruker NON-INTERLEAVED Ødelagt AVI filformat!\n" -#define MSGTR_CouldntDetFNo "Kan ikke bestemme antall frames (for absolutt søk) \n" +#define MSGTR_CouldntDetFNo "Kan ikke bestemme antall frames (for SOF søk) \n" #define MSGTR_CantSeekRawAVI "Kan ikke søke i rå .AVI streams! (index behøves, prøv med -idx valget!) \n" #define MSGTR_CantSeekFile "Kan ikke søke i denne filen! \n" Modified: mplayerxp/nls/help_mp-ro.h =================================================================== --- mplayerxp/nls/help_mp-ro.h 2010-07-27 14:02:33 UTC (rev 148) +++ mplayerxp/nls/help_mp-ro.h 2010-08-18 14:01:11 UTC (rev 149) @@ -131,7 +131,7 @@ #define MSGTR_NI_Message "%s fişier AVI NE-ÎNTREŢESUT!\n" #define MSGTR_UsingNINI "Folosesc fişier AVI NE-ÎNTREŢESUT eronat!\n" -#define MSGTR_CouldntDetFNo "Nu pot determina numărul de cadre (pentru căutare absolută)\n" +#define MSGTR_CouldntDetFNo "Nu pot determina numărul de cadre (pentru căutare SOFă)\n" #define MSGTR_CantSeekRawAVI "Nu pot căuta în fişiere .AVI neindexate! (am nevoie de index, încercaţi cu -idx!) \n" #define MSGTR_CantSeekFile "Nu pot căuta în fişier! \n" This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |