lp:mplayer
- Get this branch:
- bzr branch lp:mplayer
Branch merges
Branch information
Import details
This branch is an import of the Subversion branch from svn://svn.mplayerhq.hu/mplayer/trunk.
Last successful import was .
Recent revisions
- 38517. By komh
-
Fix compilation errors due to a wrong declaration of iconv() on OS/2
Recent compilers such as GCC 14 generate errors for implicit casts.
- 38516. By komh
-
Try to adapt to recent compilers such as GCC 14
Recent compilers such as GCC 14 generate errors for implicit casts.
- 38514. By al
-
sub/subreader: Use matching pointer type for enca_sub_cp
The guess_cp function returns `const char *`, so we should
use the same type for enca_sub_cp as well.Avoids this warning:
```
sub/subreader.c: In function 'subcp_open':
sub/subreader.c:1287: 33: warning: assignment discards 'const' qualifier from pointer target type [-Wdiscarded- qualifiers]
1287 | enca_sub_cp = guess_cp(st, enca_lang, enca_fallback);
|
``` - 38513. By al
-
sub/subreader: Avoid warning about guess_cp if libenca is not enabled
Move CONFIG_ENCA block above CONFIG_ICONV block to avoid the forward
declaration in the CONFIG_ICONV block which might not be needed if
libenca isn't enabled.Avoid this gcc warning:
```
sub/subreader.c:1216: 20: warning: 'guess_cp' declared 'static' but never defined [-Wunused-function]
1216 | static const char* guess_cp(stream_t *st, const char *preferred_language, const char *fallback);
| ^~~~~~~~
``` - 38511. By al
-
libmpcodecs/
vf_scale: Fix a build problem on big endian Fixes another problem reported in ticket 2424 (comment 12)
- 38509. By komh
-
configure: remove -Zomf from flags when checking extern symbol prefix on OS/2
OS/2 nm does work only with aout format. If -Zomf is given, gcc generates
OMF object file not aout object file. As a result, nm fails to detect
extern symbol prefix.This allows users to pass -Zomf to configure via --extra-cflags and/or
--extra-ldfalgs. - 38508. By ib
-
Use correct type to define the variable passed to lzo1x_1_compress().
Recent compilers consider an implicit cast to be an error.
Branch metadata
- Branch format:
- Branch format 7
- Repository format:
- Bazaar repository format 2a (needs bzr 1.16 or later)