| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2007-12-19 | Transform mmst_proto_s and mmsh_proto_s into arrays of arrays, padded at 8 ↵ | Diego 'Flameeyes' Pettenò | |
| bytes. The size occupied will be smaller in 64-bit systems, and almost the same in 32-bit systems, but the access should be faster. | |||
| 2007-12-19 | Remove orphaned functions. | Diego 'Flameeyes' Pettenò | |
| 2007-12-19 | Mark static strings as const. | Diego 'Flameeyes' Pettenò | |
| 2007-12-19 | Rewrite get_help function to use asprintf, without declaring the two ↵ | Diego 'Flameeyes' Pettenò | |
| help1/help2 strings and without running two gettext() calls at every get_help() call. | |||
| 2007-12-19 | Mark static strings as const. | Diego 'Flameeyes' Pettenò | |
| 2007-12-19 | Mark static strings as const. | Diego 'Flameeyes' Pettenò | |
| 2007-12-19 | Mark tv_standard_names and tv_standard_value static. | Diego 'Flameeyes' Pettenò | |
| 2007-12-19 | Mark handled_mrl const and make it a char array. | Diego 'Flameeyes' Pettenò | |
| Use sizeof rather than strlen. | |||
| 2007-12-19 | Use asprintf rather than snprintf, make frontend_device a local variable, ↵ | Diego 'Flameeyes' Pettenò | |
| and make sure to free the allocated variables on error. | |||
| 2007-12-19 | Mark the name attribute of Param being a const char *. | Diego 'Flameeyes' Pettenò | |
| 2007-12-19 | Mark content static and const. | Diego 'Flameeyes' Pettenò | |
| 2007-12-19 | Make buffering and enabled static, also use them as array of char array ↵ | Diego 'Flameeyes' Pettenò | |
| rather than array of pointers. | |||
| 2007-12-19 | Use memmem to search for the Annodex string, rather than reimplementing it ↵ | Diego 'Flameeyes' Pettenò | |
| by hand. | |||
| 2007-12-19 | Mark Annodex signature and its size static and constant. | Diego 'Flameeyes' Pettenò | |
| 2007-12-19 | Typo. | Darren Salt | |
| 2007-12-19 | Add and use new functions for malloc+memcpy(+NUL-term) fragments. | Darren Salt | |
| 2007-12-19 | Remove xine_strdupa declaration, and macro. | Diego 'Flameeyes' Pettenò | |
| 2007-12-19 | Use a zeroed allocation for buf rather than using memset. | Diego 'Flameeyes' Pettenò | |
| 2007-12-19 | Use strcat, delay calculation of resp_len. | Diego 'Flameeyes' Pettenò | |
| 2007-12-19 | Remove attribute that is never used. | Diego 'Flameeyes' Pettenò | |
| 2007-12-19 | Make auth also a local variable in http_plugin_open. | Diego 'Flameeyes' Pettenò | |
| 2007-12-19 | Make proxyauth a variable local to http_plugin_open() function. | Diego 'Flameeyes' Pettenò | |
| --HG-- extra : transplant_source : %F2%15%E8%D0%BC%EE%04Xk%21U%D2%AB%968%0F%15%8A%91E | |||
| 2007-12-18 | Merge from 1.1. | Darren Salt | |
| 2007-12-18 | Don't treat # in MRLs as literals or URI-decode raw filenames. [Bug 1784272] | Darren Salt | |
| 2007-12-18 | Clean up recursive mkdir(). | Darren Salt | |
| 2007-12-18 | Use calloc() when allocating an array of elements. | Diego 'Flameeyes' Pettenò | |
| 2007-12-18 | Use variable-sized arrays rather than allocated buffer. | Diego 'Flameeyes' Pettenò | |
| 2007-12-18 | Mark the enctable static. | Diego 'Flameeyes' Pettenò | |
| 2007-12-18 | Avoid a multiplication. | Diego 'Flameeyes' Pettenò | |
| 2007-12-18 | Use asprintf. | Diego 'Flameeyes' Pettenò | |
| 2007-12-18 | Use asprintf. | Diego 'Flameeyes' Pettenò | |
| 2007-12-18 | Use strdup. | Diego 'Flameeyes' Pettenò | |
| 2007-12-18 | Use strndup. | Diego 'Flameeyes' Pettenò | |
| 2007-12-18 | Use calloc() when allocating an array of elements. | Diego 'Flameeyes' Pettenò | |
| 2007-12-18 | Use strndup. | Diego 'Flameeyes' Pettenò | |
| 2007-12-18 | Use asprintf where possible. | Diego 'Flameeyes' Pettenò | |
| 2007-12-18 | Use variable-sized arrays rather than allocated buffers. | Diego 'Flameeyes' Pettenò | |
| 2007-12-18 | Use asprintf(). | Diego 'Flameeyes' Pettenò | |
| 2007-12-18 | Use automatic buffers rather than malloc/free the buffer. | Diego 'Flameeyes' Pettenò | |
| 2007-12-18 | Use calloc() when allocating an array of elements. | Diego 'Flameeyes' Pettenò | |
| 2007-12-18 | There's no need to use an if: when block_data is NULL, realloc() acts as ↵ | Diego 'Flameeyes' Pettenò | |
| malloc(). | |||
| 2007-12-18 | Use an automatic array rather than malloc'ing and free'ing it on the function. | Diego 'Flameeyes' Pettenò | |
| 2007-12-18 | Only open (and close) iconv in asf_header_parse_content_description. | Diego 'Flameeyes' Pettenò | |
| This way the iconv descriptor is not left open during the whole ASF demuxing. | |||
| 2007-12-18 | Check for buffer_len before allocating the buffer, so it hasn't to be freed. | Diego 'Flameeyes' Pettenò | |
| 2007-12-18 | Set the values of buffers in the same if as they are tested. | Diego 'Flameeyes' Pettenò | |
| Use calloc(1, ...) rather than using memset right afterward. | |||
| 2007-12-18 | As the error codepath is going to assert out anyway, don't do the extra malloc. | Diego 'Flameeyes' Pettenò | |
| 2007-12-18 | Use asprintf instead of sprintf. | Diego 'Flameeyes' Pettenò | |
| 2007-12-18 | Use zeroed allocation instead of memset, and don't zero out a string that is ↵ | Diego 'Flameeyes' Pettenò | |
| going to be fully sprintf'd. | |||
| 2007-12-18 | Use calloc() when the allocated size would be counted by multiplying the ↵ | Diego 'Flameeyes' Pettenò | |
| size of an item for the number of items. | |||
| 2007-12-18 | Remove a memset after xine_xmalloc. | Diego 'Flameeyes' Pettenò | |
