summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2008-01-11Fix a buffer overflow in the RTSP header-handling code.Darren Salt
CVE-2008-0225; ported from mplayer changeset 22821.
2008-01-10Oops. Re-mark a translated string as fuzzy else "make -C po update-po" fails.Darren Salt
(Got lost in the previous commit.)
2008-01-10Merge from 1.1; restore po/tr.po.Darren Salt
2008-01-09Mark bugs from the Sourceforge tracker as such.Darren Salt
2008-01-09Add the bug no. for the strtok_r fix.Darren Salt
2008-01-09Merge from 1.1.Darren Salt
2008-01-09Allow for patch-level numbering.Darren Salt
2008-01-09Fix a read-past-end bug in xine-lib's internal strtok_r replacement.Darren Salt
2008-01-09Allow for patch-level numbering; initialise to ".1".Darren Salt
2008-01-09Some lexer state tokenisation which somehow slipped through a crack somewhere.Darren Salt
2008-01-06Merge from 1.1.Darren Salt
--HG-- rename : src/xine-engine/buffer.h => include/xine/buffer.h rename : src/libffmpeg/ff_video_decoder.c => src/combined/ffmpeg/ff_video_decoder.c rename : src/libsputext/xine_sputext_decoder.c => src/spu_dec/sputext_decoder.c
2008-01-06Added signature for changeset 1dbf784bebc791266fcca02e917ee63034ac2e0bDarren Salt
2008-01-06Release tag.Darren Salt
2008-01-06Mark release.xine-lib-1_1_9-release1.1.9Darren Salt
2008-01-06Mark a translated string as fuzzy else "make -C po update-po" fails.Darren Salt
2008-01-06Constify bits of the OGM subtitle hack. Add a changelog entry.Darren Salt
2008-01-06for resolving Korean subtitle bugDongsu Park
In draw_subtitle(), if the given encoding is one the CJK charset, colored typefaces functionality is disabled and subtitles are printed with the render_text() method. Otherwise subtitles are drawn by ogm_render_line() function.
2008-01-06Tell the Real demuxer about lists of http references.Darren Salt
Such broken wrong-extension wrong-MIME-type lists exist in the wild...
2008-01-05Enable the VMware Screen codec (ffmpeg).Darren Salt
2008-01-05Add ChangeLog entry for the translation.Diego 'Flameeyes' Pettenò
2008-01-05Add translation to Türkçe by Serdar Soytetir and Server Acim.Diego 'Flameeyes' Pettenò
--HG-- extra : transplant_source : %0D7%2B%AC%15%14%B6%E9%7F%F0%A7%E2%EC%D3t3%9A%B29%9E
2008-01-04Pass $(X_CFLAGS) when compiling syncfb.Darren Salt
Noticed by Thomas Koeller <tkoeller@users.sourceforge.net>.
2008-01-04Protect against multiple inclusion of include/configure.h.Darren Salt
2008-01-04Fixed an issue in input_pvr with setting the frequency of the tuner for ivtv ↵Richard van Paasen
versions 0.10.6+ Note: the old code divided the frequency by 62.5. But, the ivtv driver expects a different format. I changed the implementation in input_pvr such that the frequency can be given as provided by cable companies, multiplied by 1000: e.g. 503250 for 503.250 MHz.
2008-01-03Detect corrupted or broken seek tables for CBR MP3 files. [Bug #3]Thibaut Mattern
--HG-- extra : transplant_source : %00%11%94ZZG%2A%A0%2A%3B%DA%CDx%AC%02%A8%E8%C3%DF%A5
2008-01-03Make memcpy_method a static constant structure, and replace the name string ↵Diego 'Flameeyes' Pettenò
with an array of characters. Move timing results to a different static array, to reduce the amount of data that would go to .data section.
2008-01-03Replace _x_vo_scale_aspect_ratio_name() function with a string table, all ↵Diego 'Flameeyes' Pettenò
the uses already check for the index not to go over ther expected one.
2008-01-02Make description and name of post-plugin parameters constant.Diego 'Flameeyes' Pettenò
2008-01-02Remove stray return 0.Diego 'Flameeyes' Pettenò
2008-01-02Make network_command accept a generic data buffer.Diego 'Flameeyes' Pettenò
2008-01-02Update the network interfaces to accept constant strings where possible.Diego 'Flameeyes' Pettenò
2008-01-02Mark the mrl lists as constant; this trades a warning for another as char ** ↵Diego 'Flameeyes' Pettenò
and const char ** are not compatible.
2008-01-02Don't mark the spu_event as constant.Diego 'Flameeyes' Pettenò
2008-01-02The id is constant, mostly.Diego 'Flameeyes' Pettenò
2008-01-02Make scale_line description constant.Diego 'Flameeyes' Pettenò
Changing this to a character array would be nice, but the 45->64 conversion has a long string.
2008-01-02Make xv_check_capability accept constant strings.Diego 'Flameeyes' Pettenò
2008-01-02The device name is constant.Diego 'Flameeyes' Pettenò
2008-01-02The file name is constant.Diego 'Flameeyes' Pettenò
2008-01-02Mark xine_health_check_s strings as constant.Diego 'Flameeyes' Pettenò
2008-01-02The name of the memcpy method is constant.Diego 'Flameeyes' Pettenò
Changing this to a character array increase code size, has to be evaluated.
2008-01-02The config translator returns a non-constant string.Diego 'Flameeyes' Pettenò
2008-01-02Update broadcaster functions to accept constant strings.Diego 'Flameeyes' Pettenò
2008-01-02Make the mpeg version a static constant character array.Diego 'Flameeyes' Pettenò
2008-01-02Make _x_vo_scape_aspect_ratio_name return a constant string.Diego 'Flameeyes' Pettenò
Note that this should probably be replaced with a const string table.
2008-01-02Return value is a constant string.Diego 'Flameeyes' Pettenò
2008-01-02Mark stuff more constant.Diego 'Flameeyes' Pettenò
2008-01-02Follow the parameter type.Diego 'Flameeyes' Pettenò
2008-01-02Make it a static constant chracter array.Diego 'Flameeyes' Pettenò
2008-01-02Mark id as constant, as we always use a literal.Diego 'Flameeyes' Pettenò
2008-01-02Make speex_comment_keys constant, and use character arrays rather than ↵Diego 'Flameeyes' Pettenò
literals' pointers. This increase a bit the machine code for the function, but seems to decrease the size of the plugin in general. It also will avoid a lot of relocations, and move speex_comment_keys entirely in .rodata.