summaryrefslogtreecommitdiffstats
path: root/libmpdemux
Commit message (Expand)AuthorAgeFilesLines
* cosmetics: misc typo fixesdiego2007-07-281-1/+1
* Remove extern index_mode, it is already in demuxer.hreimar2007-07-271-2/+0
* Make sure fformat is set before usereimar2007-07-271-1/+1
* Remove some unneeded extern variable declarationsreimar2007-07-271-8/+0
* Simplify: use FFMAXreimar2007-07-251-1/+1
* Remove some useless "extern" before function prototypesreimar2007-07-252-11/+11
* Fix for bugzilla #835rtogni2007-07-241-1/+1
* fixed bug introduced with the addition of get_ext_stream_properties()nicodvb2007-07-181-1/+1
* Avoid crash if a non-existent audio track is selected with -aidreimar2007-07-161-5/+5
* Use stream_read_qword_lereimar2007-07-141-2/+1
* add support for subtitles thru lavfaurel2007-07-131-0/+36
* Fix segfault if an 'strf' chunk couldn't be found in aviattila2007-07-131-0/+3
* fix typo in a commentaurel2007-07-131-1/+1
* fix unaligned memory access in asfheader.c, courtesy of Balatoni Deneszuxy2007-07-101-1/+1
* 100% cosmetics: reindentation and removal of trailing spacesnicodvb2007-07-081-52/+49
* unified the skip of header and stuffing bytes after the parsing of pes_extens...nicodvb2007-07-081-6/+3
* 10l, forgot to skip the stuffing bytes eventually prepended to vc1 packets (i...nicodvb2007-07-071-0/+2
* cosmetics: split separate instructions in separate linesnicodvb2007-07-071-3/+6
* proper parsing of pes_extension[12] fields (replaces the previous code that r...nicodvb2007-07-071-2/+35
* Add some missing frees.reimar2007-07-051-2/+7
* Avoid code duplication and ugly config.h hack by using av_strlcat/av_strlcpyreimar2007-07-052-4/+6
* Do not use leading underscores in multiple inclusion guards, they are reserved.diego2007-07-0215-42/+42
* Consistently use filename as multiple inclusion guard.diego2007-07-022-4/+4
* Use proper PRI?64 format stringsreimar2007-06-241-5/+6
* Remove unused and trivial string variablereimar2007-06-241-3/+0
* Fix format string to match actual type.reimar2007-06-241-1/+2
* index_mode is already defined in demuxer.hreimar2007-06-241-2/+0
* Get rid of: useless variable, useless cast and void * arithmeticreimar2007-06-241-8/+5
* Use AV_RL32reimar2007-06-241-3/+4
* Fix format strings to match argument typereimar2007-06-241-19/+20
* make opt argument of demux_info_get const.reimar2007-06-242-2/+2
* pstrcpy -> av_strlcpyreimar2007-06-241-7/+6
* Remove the now unused demux_mkv_change_subs functionreimar2007-06-241-39/+0
* Set demuxer->sub->sh to one of the s_streams like done for audio and video.reimar2007-06-241-24/+17
* Fix memleak due to not freeing demuxer->s_streamsreimar2007-06-231-0/+7
* 100l, last demux_mkv patch passed ints instead of pointers to them to sscanfreimar2007-06-231-1/+1
* Use sh_sub_t instead of mkv_track_t argument where possible, simplifying the ...reimar2007-06-231-30/+30
* demux_mkv very long seek fixuau2007-06-201-1/+1
* Fix demuxer.h multiple inclusion guarduau2007-06-201-2/+2
* Remove useless demnuxer.h include from matroska.h, it creats "hundreds" ofreimar2007-06-201-2/+0
* Simplify network timeout calculation.cehoyos2007-06-201-2/+3
* Silence three warnings.cehoyos2007-06-181-4/+4
* Stop playing at eof or if no data arrives for ten seconds.cehoyos2007-06-181-0/+12
* More accurate seeking for demuxers lacking DEMUXER_CTRL_GET_TIME_LENGTH controlzuxy2007-06-171-1/+3
* Set subtitle type in mpg demuxer. Fixes subtitle switching with 'j'reimar2007-06-171-1/+2
* clearly specify the valid substream id range, rather than using unreadable bi...nicodvb2007-06-121-2/+3
* Don't set random codec parameters for AC3/DTS in mkv.aurel2007-06-101-2/+2
* removed functions that were used to parse mpeg12 video (no more video); patch...nicodvb2007-06-101-69/+0
* init ts_probe to 0 and probe up to TS_MAX_PROBE_SIZE if the parameternicodvb2007-06-091-4/+5
* added support for DTS1 audio descriptornicodvb2007-06-091-0/+4
* 1000000l, descriptor VC-1 identifies VIDEO_VC1, not AUDIO_DTSnicodvb2007-06-091-1/+1
* Fix segfault when encoding from an mkv file with embedded fonts.eugeni2007-06-071-1/+2
* Calculate pts with double precision in demux_asfuau2007-06-071-2/+2
* Replace implicit use of fast_memcpy via macro by explicit use to allowreimar2007-06-053-8/+8
* Use 'static inline' instead of 'inline static' to avoid warningszuxy2007-06-041-8/+8
* Remove unused parameter for mp_msgzuxy2007-06-031-1/+1
* Make realloc_struct inline as other functions defined in demuxer.hzuxy2007-06-021-1/+1
* prog_id is an uint16_t; reported by Mario Rossi (mariofurire googlemail com)nicodvb2007-06-021-1/+1
* Use play duration instead of send duration to calculate the lengthzuxy2007-05-301-1/+1
* Get rid of __attribute__((__packed__)) in Matroska demuxerreimar2007-05-281-122/+43
* 10l: r23399 broke mov/mp4 demuxingcehoyos2007-05-281-0/+8
* Remove some unused variables, patch by timwoj ieee org.diego2007-05-284-13/+1
* Set i_bps for ASF video streams according to extended stream propertieszuxy2007-05-223-2/+7
* cosmetics: fix indentation for previous commitcorey2007-05-181-1/+1
* PIX_FMT_NONE is -1, not 0, so if stream->imgfmt is 0, ctx->pix_fmt getscorey2007-05-181-0/+1
* Reuse AV_RL macros in ogg demuxer instead of its own overcomplicated implemen...reimar2007-05-171-49/+4
* Make use of new AV_RL64reimar2007-05-171-1/+1
* Remove useless setting of dp->len, it is already set to that value byreimar2007-05-171-1/+0
* Pass imgfmt from lavc encoder to lavf muxer (this is needed for dv).corey2007-05-171-0/+1
* Add imgfmt (AKA pixel format) to muxer_stream_t so that encoders cancorey2007-05-171-0/+1
* Fix double free() in demux_asf.cuau2007-05-141-3/+1
* add txd codec, works with http://samples.mplayerhq.hu/game-formats/txd/fronte...compn2007-05-101-0/+1
* Fix indentation broken in r23287reimar2007-05-101-4/+4
* Support theora in mkv. Sample: http://samples.mplayerhq.hu/Matroska/theora.mkvreimar2007-05-102-0/+2
* Avoid code duplication in mkv demuxer for standard fourcc/extradata handlingreimar2007-05-101-29/+23
* Ignore comments where no '=' follows the comment name (otherwisereimar2007-05-091-1/+2
* For DVR-MS:nicodvb2007-05-073-37/+277
* Fix compilation after FFmpeg r8921cehoyos2007-05-071-1/+1
* Fix NULL pointer dereference in demux_mkv that happens wheneugeni2007-05-011-2/+2
* Simplify preprocessor directives: There is a general variable fordiego2007-04-262-3/+3
* Add general variables for either static or shared FFmpeg libraries.diego2007-04-261-2/+0
* Add CXX include flags to dependency file generation CFLAGS to generate correctdiego2007-04-261-0/+2
* cosmetics: Remove CONFIG_ prefix from FFmpeg library Makefile variables.diego2007-04-251-4/+4
* Declarations and code should not be mixed.diego2007-04-253-6/+5
* Add support for Bethesda Software VID video.diego2007-04-251-0/+1
* compilation fix, manually include help_mp.hods152007-04-241-0/+2
* Cosmetics: remove duplicate space in ifdefreimar2007-04-221-2/+2
* demuxer_desc_lavf_preferred depends on USE_LIBAVFORMAT or USE_LIBAVFORMAT_SOnicodvb2007-04-221-0/+2
* with -identify show audio and video id; patch by Andrew Savchenko (Bircoph li...nicodvb2007-04-206-1/+16
* Ignore mp4a audio tag, it is meaningless since we get it for all mp4 filesreimar2007-04-161-0/+3
* Use lavf_preferred mechanism to replace more extension-based detection hacksreimar2007-04-142-4/+2
* Add lavf_preferred demuxer for lavf formats we want to be probedreimar2007-04-144-5/+42
* added :interleaving2, a better method to determine which stream whouls be flu...nicodvb2007-04-081-0/+14
* in mpegfile_write_header(only for mpeg1/2) don't overwrite the values of bufs...nicodvb2007-04-081-10/+0
* reindentationnicodvb2007-04-081-2/+2
* in the system header set audio_locked/video_locked only for dvd and vcdnicodvb2007-04-081-0/+4
* small syntax fix: muxrate is expressed in units of 400 bits/second, not 50 by...nicodvb2007-04-081-1/+1
* Start to separate bad-autodetection hacks from other stuff in extension-basedreimar2007-04-071-0/+5
* .dxa files should be handled by libavformat.diego2007-04-071-0/+1
* support for C93 videodiego2007-04-071-0/+1
* 10l, the scr must be reset before overwriting the first pack with the correct...nicodvb2007-04-071-0/+3
* support for THP ADPCM audiodiego2007-04-071-0/+1
* reversed r22879 until I discover why it's giving so many sync problems; I'll ...nicodvb2007-04-071-3/+24
* BMP support for mf://reimar2007-04-061-0/+2
* Use teardownMediaSession() instead of teardownMediaSubsession()cehoyos2007-04-031-6/+1
* "()" to "(void)" function param list fixesuau2007-04-011-1/+1
* removed init_apts and init_vpts; added :adelay in addition to :vdelaynicodvb2007-04-011-6/+14
* cosmetics: removed trailing spacesnicodvb2007-04-011-4/+4
* Add support for the THP game format.diego2007-04-011-0/+1
* in flush_buffers() removed code that required the presence of an amount of au...nicodvb2007-04-011-24/+3
* Support h264 over rtspcehoyos2007-04-013-0/+113
* Cosmetics: Move variable declaration and initialization up.cehoyos2007-04-011-1/+2
* Handle X-QT extradata in a slightly more correct waycehoyos2007-03-261-6/+2
* Fix filepos calculationcehoyos2007-03-221-1/+1
* Every X-QT stream needs video frame rate (not just avc, mpeg4 and svq3)cehoyos2007-03-221-1/+1
* Move libav* include CFLAGS to mpcommon.mak instead of duplicating them.diego2007-03-181-4/+0
* Move setting CXXFLAGS to configure.diego2007-03-181-2/+0
* add fourcc for dxa files, approved by diegocompn2007-03-171-0/+1
* Matroska seeking fixesuau2007-03-161-12/+22
* Use explicit path for headers from the loader/ directory.diego2007-03-153-5/+3
* Add explicit location for headers from the stream/ directory.diego2007-03-1555-56/+56
* Add live555 include flags to CXXFLAGS only.diego2007-03-151-1/+1
* Check for eof in loop searching for data chunk.reimar2007-03-151-1/+1
* cosmetics: Fix indentation, reorder some lines for consistency.diego2007-03-131-46/+45
* Give more descriptive names to the source and library variables and splitdiego2007-03-131-18/+16
* cosmetics: renamed variable amr as headersize, more meaningful; patch by Carl...nicodvb2007-03-121-4/+4
* Source files should not contain non-ASCII characters.diego2007-03-122-2/+2
* Move the sh_audio->delay field to mpctx->delay.uau2007-03-112-2/+0
* remove some lines which should have never been in demux_nut.c, broke CPU ods152007-03-091-3/+0
* Fix audio samplerates below 7000 Hz.uau2007-03-071-1/+1
* support for AMR; it works inserting in the first byte of the demux_packetnicodvb2007-03-062-2/+17
* removed unused definition of insertRTPData(); it's not only unused,nicodvb2007-03-052-32/+0
* Audio should now work fine, so remove the ENABLE_AUDIO ifdefreimar2007-03-051-5/+0
* Implement percent-based seekingreimar2007-03-051-0/+5
* Fix seeking for avisynth audio.reimar2007-03-051-6/+14
* Fix DEMUXER_CTRL_GET_PERCENT_POS with -novideoreimar2007-03-051-1/+3
* remove pointless cast to intreimar2007-03-051-1/+1
* Remove subcp_open/subcp_close from mkv demuxer, they are useless since a long...reimar2007-03-051-7/+0
* when seeking consider stream->start_pos instead of 0 as initial position; pat...nicodvb2007-03-041-2/+4
* Remove variable that is unnecessary after last patchreimar2007-03-041-2/+1
* Remove hack that sets demuxer->video->pts after seeking, it seems no longer n...reimar2007-03-041-1/+0
* Set pts also for audio packetsreimar2007-03-041-0/+1
* Already frameno == num_frames means we reached EOF.reimar2007-03-041-1/+1
* Fix crash with avisynth audio-only files and take audio length into account w...reimar2007-03-041-2/+5
* Support more avisynth audio sample types (untested)reimar2007-03-041-2/+13
* Remove useless void * castsreimar2007-03-041-8/+8
* Do not read more audio samples than availablereimar2007-03-041-1/+4
* Fix pakcet -> packet typo in outputreimar2007-03-041-1/+1
* Set format tag for float samples correctly (currently useless)reimar2007-03-041-1/+2
* Move/simplify some variable declarationsreimar2007-03-041-5/+2
* Demuxers have no business setting o_bpsreimar2007-03-041-1/+0
* First half-working avisynth audio supportreimar2007-03-041-4/+15
* Fix wrong setting of samplesize (must be bytes per sample, not bits)reimar2007-03-041-1/+2
* ENABLE_AUDIO now selects only between -nosound and -aid 0 as default, can be ...reimar2007-03-041-10/+4
* Enable aid/vid stream selection, although it is quite useless currently.reimar2007-03-041-4/+7
* Fix type and usage of avs_get_audio functionreimar2007-03-041-3/+2
* warn users about drm files, patch by zuxy mengcompn2007-03-031-0/+46
* Replace MIN with FFMINreimar2007-03-011-4/+0
* Use libavutil's av_clip* instead of unreadable MIN/MAX chaos.reimar2007-03-012-17/+7
* test the continuity of timestamps for STREAMTYPE_VCD, too; patch by Zuxy Mengnicodvb2007-02-281-1/+2
* implementation of DEMUXER_CTRL_GET_TIME_LENGTH and DEMUXER_CTRL_GET_PERCENT_P...nicodvb2007-02-271-1/+21
* assign missing frametime as 1.0/fps; patch by Carl Eigen Hoyosnicodvb2007-02-271-0/+1
* 1000l, removed code that messed with the internals of demux_packet_t (but the...nicodvb2007-02-271-2/+1
* removed duplicated code in demux_seek(); stream_seek() already aligns to STRE...nicodvb2007-02-272-11/+0
* 100000l: average != semidistance, fixed seeking to the middle position; patch...nicodvb2007-02-271-1/+1
* copy the content of QDM2 atom as extradata for ffqdm2 playback; patch by Carl...nicodvb2007-02-261-0/+19
* 2 less variablesnicodvb2007-02-251-1/+0
* cosmetics: reformattednicodvb2007-02-251-65/+65
* removed unused variablesnicodvb2007-02-251-1/+1
* simplified parse_mpeg12_video()nicodvb2007-02-251-82/+72
* member real_framerate is completely uselessnicodvb2007-02-251-2/+1
* cosmetics: reindentednicodvb2007-02-2