1
mirror of https://github.com/mpv-player/mpv synced 2025-03-11 04:44:32 +01:00
mpv/libmpdemux
reimar f7e04468d6 fix for crash when seeking with -novideo option
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@12968 b3059339-0415-0410-9bf9-f77b7e298cf2
2004-08-07 14:20:28 +00:00
..
2004-01-11 17:07:32 +00:00
2003-08-07 12:24:35 +00:00
2004-01-29 12:43:54 +00:00
2004-04-17 10:31:38 +00:00
2004-01-11 17:07:32 +00:00
2004-01-11 17:07:32 +00:00
2001-10-20 18:49:08 +00:00
2004-07-26 22:06:30 +00:00
2002-10-29 09:18:53 +00:00
2003-12-16 07:35:04 +00:00
2001-10-20 18:49:08 +00:00
2004-06-25 16:49:53 +00:00
2003-01-05 23:51:05 +00:00
2004-03-17 14:50:37 +00:00
2002-04-24 15:36:07 +00:00
2004-05-12 22:48:15 +00:00
2004-01-16 03:56:25 +00:00
2003-08-07 13:25:03 +00:00
2003-08-13 19:02:34 +00:00
10l
2003-11-30 19:04:27 +00:00
2004-07-19 23:19:07 +00:00
2004-03-31 05:40:31 +00:00
2002-12-22 21:01:01 +00:00
2004-07-19 23:19:07 +00:00
2003-02-09 20:18:23 +00:00
2001-11-16 22:06:48 +00:00
2001-10-20 18:49:08 +00:00
2002-10-29 09:18:53 +00:00
2004-08-04 18:38:27 +00:00
2003-04-25 10:20:15 +00:00
2003-07-04 21:04:14 +00:00
2001-10-20 18:49:08 +00:00
2001-10-30 18:45:54 +00:00
2004-02-17 12:30:45 +00:00
2001-12-27 22:20:15 +00:00
2004-06-25 15:19:11 +00:00
2001-10-20 18:49:08 +00:00
2003-10-04 17:29:08 +00:00
2002-12-26 17:25:22 +00:00
2004-06-25 17:03:59 +00:00
2001-10-21 16:05:21 +00:00
2004-07-11 22:47:49 +00:00
2004-07-11 22:47:49 +00:00
2004-07-31 11:08:47 +00:00
2003-08-17 11:07:18 +00:00
2003-03-30 17:14:41 +00:00
2004-03-17 03:53:02 +00:00
2004-01-11 17:07:32 +00:00
2004-05-01 18:30:38 +00:00
2004-07-19 23:19:07 +00:00
2004-05-01 18:15:29 +00:00
2003-04-10 08:34:43 +00:00
2004-04-11 19:03:12 +00:00
2003-08-07 12:18:04 +00:00
2002-01-27 17:16:10 +00:00
2003-05-30 17:38:51 +00:00

libmpdemux - MPlayer's input/demuxer layer  (C) A'rpi / MPlayer team
==========================================

NOTE: It is not in the final form yet! API may change...

Stream input layer:
===================
#include "stream.h"

Supported modes:
- file (by 2048 byte sectors) including STDIN (if filename "-")
- VCD disk (by 2324 byte mode2 sectors)
- network (buggy, mpg/avi download-like streaming works, asf not)
- DVD disk using with libdvdread 0.8 or 0.9

Note: optional CACHE layer with read-ahead and seek-back buffer (not finished)

Demuxer layer:
==============
#include "demuxer.h"

Supported formats:
- MPEG (PS,PES,VOB,ES), including VCD disk image files (.ISO/.BIN)
- AVI, with or without index, interleaved and non-interleaved formats
- ASF v1.0 (aka .wmv/.wma)
- Quicktime MOV - including compressed headers, CBR and VBR

Others:
=======
#include "stheader.h" - audio and video stream structs used by header parsers
#include "parse_es.h" - Mpeg ES stream parser

Using it outside of mplayer tree:
=================================
It uses a few things from mplayer tree:
config.h - system-dependent options, see ./configure
mp_msg.c/.h - mplayer's message printing code - copy it or impement your own
help_mp.h - error/info message texts
bswap.h - little/big endian conversion

If you use it in your project - please tell me!

A'rpi - arpi@thot.banki.hu