mirror of
https://github.com/mpv-player/mpv
synced 2024-12-28 06:03:45 +01:00
add support for /game-formats/psx-str/
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@27133 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
parent
8fc592968a
commit
c191e0424b
@ -7,7 +7,7 @@ MPlayer (1.0)
|
||||
* support for DTS WAV/DTS-CD passthrough by ad_hwac3
|
||||
* Apple's raw YUV2 in MOV
|
||||
* LATM over LOAS AAC decoding via internal libfaad2
|
||||
* video game codecs: BFI video
|
||||
* video game codecs: BFI video, PSX STR files
|
||||
* AVOption support for libavcodec-based decoders
|
||||
|
||||
Demuxers:
|
||||
|
@ -9,6 +9,14 @@ release 20070930
|
||||
; VIDEO CODECS
|
||||
;=============================================================================
|
||||
|
||||
videocodec ffmdec
|
||||
info "FFmpeg Sony PlayStation MDEC (Motion DECoder)"
|
||||
status working
|
||||
fourcc MDEC ; internal MPlayer FourCC
|
||||
driver ffmpeg
|
||||
dll mdec
|
||||
out YV12
|
||||
|
||||
videocodec ffsiff
|
||||
info "FFmpeg Beam Software SIFF decoder"
|
||||
status working
|
||||
@ -2813,6 +2821,13 @@ audiocodec ffadpcmeamaxis
|
||||
driver ffmpeg
|
||||
dll adpcm_ea_maxis_xa
|
||||
|
||||
audiocodec ffadpcmxa
|
||||
info "FFmpeg XA ADPCM audio"
|
||||
status working
|
||||
fourcc PSXA ; internal MPlayer FourCC
|
||||
driver ffmpeg
|
||||
dll adpcm_xa
|
||||
|
||||
audiocodec ffxandpcm
|
||||
info "FFmpeg XAN DPCM audio"
|
||||
comment "only works with libavformat demuxer"
|
||||
|
@ -62,6 +62,7 @@ static struct {
|
||||
{ "ape", DEMUXER_TYPE_LAVF },
|
||||
{ "apl", DEMUXER_TYPE_LAVF },
|
||||
{ "mac", DEMUXER_TYPE_LAVF },
|
||||
{ "str", DEMUXER_TYPE_LAVF },
|
||||
|
||||
// At least the following are hacks against broken autodetection
|
||||
// that should not be there
|
||||
|
@ -27,6 +27,7 @@ static const AVCodecTag mp_wav_tags[] = {
|
||||
{ CODEC_ID_ADPCM_EA_MAXIS_XA, MKTAG('A', 'D', 'X', 'A')},
|
||||
{ CODEC_ID_ADPCM_IMA_WS, MKTAG('A', 'I', 'W', 'S')},
|
||||
{ CODEC_ID_ADPCM_THP, MKTAG('T', 'H', 'P', 'A')},
|
||||
{ CODEC_ID_ADPCM_XA, MKTAG('P', 'S', 'X', 'A')},
|
||||
{ CODEC_ID_AMR_NB, MKTAG('n', 'b', 0, 0)},
|
||||
{ CODEC_ID_COOK, MKTAG('c', 'o', 'o', 'k')},
|
||||
{ CODEC_ID_DSICINAUDIO, MKTAG('D', 'C', 'I', 'A')},
|
||||
@ -69,6 +70,7 @@ static const AVCodecTag mp_bmp_tags[] = {
|
||||
{ CODEC_ID_FLIC, MKTAG('F', 'L', 'I', 'C')},
|
||||
{ CODEC_ID_IDCIN, MKTAG('I', 'D', 'C', 'I')},
|
||||
{ CODEC_ID_INTERPLAY_VIDEO, MKTAG('I', 'N', 'P', 'V')},
|
||||
{ CODEC_ID_MDEC, MKTAG('M', 'D', 'E', 'C')},
|
||||
{ CODEC_ID_RL2, MKTAG('R', 'L', '2', 'V')},
|
||||
{ CODEC_ID_ROQ, MKTAG('R', 'o', 'Q', 'V')},
|
||||
{ CODEC_ID_THP, MKTAG('T', 'H', 'P', 'V')},
|
||||
|
Loading…
Reference in New Issue
Block a user