summaryrefslogtreecommitdiffstats
path: root/edl.c
Commit message (Collapse)AuthorAgeFilesLines
* Remove trailing whitespace from most filesUoti Urpala2009-07-071-10/+10
|
* Translation system changes part 2: replace macros by stringsAmar Takhar2009-07-071-8/+10
| | | | | Replace all MSGTR_ macros in the source by the corresponding English string.
* Translation system changes part 1: wrap translated stringsAmar Takhar2009-07-071-8/+8
| | | | | Replace mp_msg() calls which have a translated string as the format argument with mp_tmsg and add _() around all other translated strings.
* all cosmetics, mainly denestifying of main edl operation's fill loopreynaldo2006-07-051-51/+59
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@18909 b3059339-0415-0410-9bf9-f77b7e298cf2
* fixes 1000l bug that made MPlayer segfault when an overlaping edl line was foundreynaldo2006-07-051-1/+1
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@18908 b3059339-0415-0410-9bf9-f77b7e298cf2
* corectly report badly formated line numberreynaldo2006-07-051-1/+1
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@18907 b3059339-0415-0410-9bf9-f77b7e298cf2
* reverts previous commit due to mixed cosmetics ...reynaldo2006-07-051-57/+51
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@18906 b3059339-0415-0410-9bf9-f77b7e298cf2
* - Fix segfault on overlapping start/stopreynaldo2006-07-041-51/+57
| | | | | | | | - Correctly report skipped erroneous line number - Denestyfies main operation fill loop git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@18896 b3059339-0415-0410-9bf9-f77b7e298cf2
* Make EDL compilation unconditionaluau2006-04-271-4/+0
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@18313 b3059339-0415-0410-9bf9-f77b7e298cf2
* remove edl.c pre-alloc, more readble and safe codeods152006-03-101-13/+10
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@17803 b3059339-0415-0410-9bf9-f77b7e298cf2
* Patch by Stefan Huehner / stefan % huehner ! org \rathann2006-02-091-1/+1
| | | | | | | | | | | | | | | | | | | | | | patch replaces '()' for the correct '(void)' in function declarations/prototypes which have no parameters. The '()' syntax tell thats there is a variable list of arguments, so that the compiler cannot check this. The extra CFLAG '-Wstrict-declarations' shows those cases. Comments about a similar patch applied to ffmpeg: That in C++ these mean the same, but in ANSI C the semantics are different; function() is an (obsolete) K&R C style forward declaration, it basically means that the function can have any number and any types of parameters, effectively completely preventing the compiler from doing any sort of type checking. -- Erik Slagter Defining functions with unspecified arguments is allowed but bad. With arguments unspecified the compiler can't report an error/warning if the function is called with incorrect arguments. -- Måns Rullgård git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@17567 b3059339-0415-0410-9bf9-f77b7e298cf2
* Fix EDL to be per file, allow -edlout and -edl together as there is reallyods152005-12-061-18/+0
| | | | | | | no reason not to. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@17110 b3059339-0415-0410-9bf9-f77b7e298cf2
* Some to-be-redundant EDL code moved to edl.c with mencoder's edl in mind. ↵reynaldo2005-02-251-78/+55
| | | | | | Stack handling improvements, Patch by Oded Shimon git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@14808 b3059339-0415-0410-9bf9-f77b7e298cf2
* several sets of headers declare global variables in them, which causes ↵iive2005-01-291-0/+3
| | | | | | | | | multiple definition errors with gcc 4.x patch by Alexander Strange <astrange ithinksw.com> git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@14608 b3059339-0415-0410-9bf9-f77b7e298cf2
* Hardcoded EDL messages moved to help_mp-en.h, Doxygen comments added, patchdiego2004-09-171-14/+29
| | | | | | | | by "Reynaldo H. Verdejo Pinochet" <reynaldo at opendot dot cl>, spelling and wording corrections by me. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@13359 b3059339-0415-0410-9bf9-f77b7e298cf2
* EDL enhancement/fixes:rtognimp2004-08-281-0/+161
*Some edl's code moved from mplayer.c to edl.c (mencoder will use the same functions) * slighty faster * removed MAX_EDL_ENTRIES limit (just reserve the memory we really need) * really treat edl_records as a linked list (coz it is) * edl now 'remembers' pending operations after a manual _seek_ * better way of handling Mute/Umute eliminates some nasty bugs when manual seeking (scrwed up mute/unmute order, no audio after seek, etc) * seeking while on -edl mode now _WORKS_ Patch by Reynaldo H. Verdejo Pinochet (reynaldo at opendot dot cl) git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@13169 b3059339-0415-0410-9bf9-f77b7e298cf2