summaryrefslogtreecommitdiffstats
path: root/libmpdemux
Commit message (Expand)AuthorAgeFilesLines
* moved pes_header from file-static to send_mpeg_pes_packet_ll()nicodvb2008-01-131-2/+1
* Write functions used by send_mpeg_*_packet may _not_ modify datareimar2008-01-122-7/+7
* ps1_header and ps2_header should be constreimar2008-01-121-2/+2
* Add a few "const" attributes.reimar2008-01-121-2/+2
* Add libass support to demux_lavf.eugeni2008-01-121-2/+12
* Instead of keeping attachments in mkv demuxer, use demuxer_add_attachment().eugeni2008-01-121-44/+1
* Add demuxer interface for attachments.eugeni2008-01-122-0/+36
* Remove global_ass_track. Instead create an ass_track for each 't' track.eugeni2008-01-111-1/+2
* Move all subtitle parsing from mkv demuxer to update_subtitles().eugeni2008-01-111-22/+1
* Init and destroy ass_tracks in demuxer.c based on sh_sub->type value.eugeni2008-01-112-40/+19
* Set extradata for subtitle tracks in mkv demuxer.eugeni2008-01-111-0/+4
* Add extradata to sh_sub_t.eugeni2008-01-112-0/+3
* Factorize private data decoding for subtitle tracks in mkv demuxer.eugeni2008-01-111-20/+12
* Codecdata must always be malloc'd, fixes free being called with anreimar2008-01-091-2/+4
* Deallocate audio track codecdata.eugeni2008-01-071-0/+1
* Fix illegal identifiers: Names starting with __ or _ and uppercase are reserveddiego2008-01-066-16/+16
* Don't overread audio datartogni2008-01-061-1/+14
* Don't dynamically allocate sub_packet_lengths[] in raac demuxing.rtogni2008-01-061-3/+1
* wrapper functions to get/set angle: the wrapping is needed to RESYNC the demu...nicodvb2008-01-052-0/+55
* in the PMT stream_type==0x11 identified AAC in LATM-over-LOAS syntax that isn...nicodvb2008-01-051-1/+0
* Add multiple inclusion guards to all header files that lack them.diego2008-01-016-0/+24
* Consistently use just the name of the #ifdef directive in #endif comments.diego2008-01-011-1/+1
* Fix wrong #endif comment that does not match the #ifdef directive.diego2008-01-011-1/+1
* Add explanatory comments to the #endif part of multiple inclusion guards.diego2007-12-318-8/+8
* Add some const/static qualifiers as appropriatereimar2007-12-242-5/+5
* Use realloc_struct in more places for consistencyreimar2007-12-241-3/+3
* Get rid of some of the more excessive () and casts.reimar2007-12-241-24/+24
* Make sure we have an rtsp sessionlu_zero2007-12-241-0/+3
* Replace LOAD_LE32 etc. by AV_RL32 etc.reimar2007-12-231-28/+8
* Add a read_varlen function to reduce some code duplicationreimar2007-12-231-44/+24
* 100l, fix compilation.reimar2007-12-221-2/+2
* Set is_streamed correctly, should make network playback work more reliably.reimar2007-12-221-0/+1
* Get rid of URLProtocol mess (especially problematic since it made usereimar2007-12-221-34/+12
* Move ds->current=NULL; further up to the free_demux_packet.reimar2007-12-201-1/+1
* Vobsub support tridx setting in .idx file.ulion2007-12-191-2/+8
* Remove useless stray #include.diego2007-12-161-1/+0
* Cosmetics: Fix indentation.cehoyos2007-12-141-1/+1
* Set correct image format for 24bit "raw " in mov files.cehoyos2007-12-141-1/+7
* Add demuxer functions for chapter feature.ulion2007-12-132-0/+81
* Fix memory leak that tmp allocated but maybe not used.ulion2007-12-101-4/+6
* Move temp variable declaration into inner loop scope.ulion2007-12-101-2/+3
* Convert vobsub custom colors from rgb to yuv using a common function.ulion2007-12-091-1/+3
* Move vobsub palette->yuv convert code into a common function.ulion2007-12-081-9/+3
* Restore y of palette into the same value range as it was in the .ifo file.ulion2007-12-081-0/+1
* Rename demuxer tags to clarifylu_zero2007-12-042-4/+4
* Remove non necessary headerlu_zero2007-12-042-51/+7
* Make libnemesi use specific struct and DEMUXER_TYPElu_zero2007-12-043-4/+9
* Make m_option_t arrays referenced by cfg-common.h constreimar2007-12-023-3/+3
* Table of ID3 genres should be const as wellreimar2007-12-021-1/+1
* Fix playback of streams with more than one video track (only one supported).cehoyos2007-12-021-1/+7
* Finally replace get_uint?? by AV_RL??reimar2007-12-011-35/+31
* Get rid of annoying, space-wasting sizeof(uint32_t)reimar2007-12-011-2/+2
* Bigendian fix for ogg in AVIreimar2007-12-011-2/+4
* Use a loop instead of doing the same thing three timesreimar2007-12-011-14/+7
* Use a pointer variable for extradata to simplify init_avi_with_oggreimar2007-12-011-4/+9
* Set sh_video->format when parsing aviheader, otherwise it might neverreimar2007-12-011-0/+1
* Remove some pointless castsreimar2007-12-011-2/+2
* Create correct extradata for vorbis audio when used as avi sub-demuxerreimar2007-12-011-0/+1
* Fix some typos in comments, grammar is still bad.reimar2007-12-011-3/+3
* Fix typos in comments to stop them hurting my eyesreimar2007-12-011-5/+5
* simplifymichael2007-11-301-1/+1
* Enable -rtsp-port for nemesilu_zero2007-11-271-2/+2
* Bring (de)muxer_lavf up to date with the libavformat API changes introduced b...iive2007-11-232-5/+5
* Enable Theora supportlu_zero2007-11-231-0/+1
* Fix compilation error.iive2007-11-221-1/+1
* AAC support (aac-hbr only)lu_zero2007-11-211-0/+1
* Media Format to fourcc conversion (from amol)lu_zero2007-11-211-22/+42
* Remove unused function write_psm_block(), fixes the warning:diego2007-11-211-19/+0
* Musepack SV8 lavc decoder supportkostya2007-11-201-0/+1
* 100l, fix uint32_t* instead of uint32_t typo in demux_mf type->fourcc tablereimar2007-11-181-1/+1
* Remove a pointless #ifdefreimar2007-11-171-4/+0
* Replace if-else constructs for type -> fourcc mapping by a table in demux_mfreimar2007-11-171-13/+24
* Print warning about encrypted audio tracksrtogni2007-11-151-0/+2
* add tif support to demux_mfcompn2007-11-141-0/+2
* Check for second stream presence, fixes single stream playback (from amol)lu_zero2007-11-131-0/+5
* 10l video != audiolu_zero2007-11-131-1/+1
* support extradata for audio streamslu_zero2007-11-131-4/+13
* fetch metadata for audio (from amol)lu_zero2007-11-131-2/+3
* Revert stray commit r25027lu_zero2007-11-131-22/+7
* Check for second stream presence, fixes single stream playback (from amol)lu_zero2007-11-131-0/+5
* 10l video != audiolu_zero2007-11-121-1/+1
* support extradata for audio streamslu_zero2007-11-121-5/+14
* fetch metadata for audio (from amol)lu_zero2007-11-121-2/+3
* Add support for mpeg4video-es (from dario)lu_zero2007-11-121-0/+3
* fix forcefps (from amol)lu_zero2007-11-121-4/+10
* Refactor demux_nemesi (from amol)lu_zero2007-11-121-61/+71
* Fix typo in error messagereimar2007-11-061-1/+1
* reindentednicodvb2007-11-051-1/+1
* 10l, setting a non-existent timestamp (default 0.0) when the pts flag isn't s...nicodvb2007-11-051-0/+1
* in video_read_frame() set the keyframe flag in demuxer->video when dealing withnicodvb2007-11-021-0/+2
* prevent unlikely memleaknicodvb2007-11-021-2/+5
* 10l, priv->use_psm can be 1 only if the format is genmpeg2nicodvb2007-11-021-3/+5
* add streams to the PSM only if priv->use_psm is set, otherwise the muxer wouldnicodvb2007-11-021-1/+1
* moved to fix_parameters() the decision of the necessity of the PSM based on t...nicodvb2007-11-021-2/+3
* removed no more needed variablenicodvb2007-11-021-1/+1
* moved to fix_parameters() the code that decides if the PSM is needednicodvb2007-11-021-11/+10
* repeat the PSM once every second (in terms of delta_scr) otherwise playing th...nicodvb2007-11-021-0/+23
* remove the registration descriptor from the PSM: writing the fourcc in it mak...nicodvb2007-11-021-7/+2
* 100% cosmetics: reformatted with tabs and symmetric braces and removed useles...nicodvb2007-11-021-319/+324
* Clean up some fields in stheader.h structsuau2007-11-011-3/+2
* Remove unused variable:diego2007-10-301-1/+1
* Disable function that is only used in disabled code, fixes warning:diego2007-10-301-0/+2
* Fix fps guessinglu_zero2007-10-291-3/+11
* Update to use newer libnemesi, should fix desync, fps guessing may fail nowlu_zero2007-10-291-10/+4
* removed silly #if 1nicodvb2007-10-271-2/+0
* DEMUXER_TYPE_TV is always defined, thus removed corresponding #ifdef USE_TV.nicodvb2007-10-271-2/+0
* reindented previously modified codenicodvb2007-10-271-4/+4
* implemented DEMUXER_CTRL_IDENTIFY_PROGRAM to permit program switchingnicodvb2007-10-271-0/+54
* permit identification and selection of programsnicodvb2007-10-271-0/+29
* permit the transititions no stream <-> some streams and viceversa (needed for...nicodvb2007-10-271-3/+11
* moved to a new function handle_stream() the code to parse the streams and ass...nicodvb2007-10-271-111/+115
* in process_userdata() move debugging messages from stdout to stderrnicodvb2007-10-271-4/+4
* removed funny calls to fflush(stdout) after mp_msg()nicodvb2007-10-271-7/+7
* removed more empty spaces and empty linesnicodvb2007-10-271-3/+1
* replaced giant if() with if(pre-calculated variable) (there was even a bug: P...nicodvb2007-10-271-5/+1
* cosmetics: removed tabs/empty lines/trailing spaces and done a partial reform...nicodvb2007-10-271-82/+72
* cosmetics: moved to function find_video_codec() and reused in video_read_*() ...nicodvb2007-10-271-45/+42
* demuxer.c: Remove useless codeuau2007-10-251-21/+17
* add support for wavpack into matroskaaurel2007-10-212-0/+5
* Remove unused code and fix warning:diego2007-10-211-14/+0
* Mark constant argument of mp_header_process_sequence_header as such.diego2007-10-192-2/+2
* add nellymoser codec to mplayer with internal fourcc NELLcompn2007-10-161-0/+1
* Add -lavfdopts cryptokeyreimar2007-10-141-0/+22
* support Y800 in raw videodiego2007-10-131-0/+1
* in update_stats() removed a wrong 'else' that would prevent h264 headers to b...nicodvb2007-10-041-1/+1
* Fix missing subtitles after seeking backuau2007-10-041-0/+1
* support for DTS as specified in DVB (untested)nicodvb2007-10-031-0/+8
* Format 0x01 cannot be used with "AMV IMA ADPCM", because it belongs to normal...voroshil2007-10-031-0/+2
* Set biWidth/biHeight in fli demuxerreimar2007-10-021-0/+2
* Make sure there is no uninitialized data in BITMAPINFOHEADER created by fli d...reimar2007-10-021-1/+1
* Remove ugly unused struct name from typedefreimar2007-10-021-1/+1
* AMV demuxer and audio/video decodervoroshil2007-09-301-0/+1
* analyzeduration option for lavf demuxerhenry2007-09-291-0/+6
* remove useless int->double conversionhenry2007-09-291-3/+2
* fix warningshenry2007-09-291-1/+1
* fixed bug introduced with previous commit: patch_panscan() must work in the s...nicodvb2007-09-281-1/+1
* 1000l, the tff flag was never cleared before being overwritten with the value...nicodvb2007-09-281-2/+4
* h263 exposedlu_zero2007-09-281-0/+3
* Fix playback of streams with more than one audio track (only one supported).cehoyos2007-09-251-0/+7
* Simplify: initialize at declaration at the start of the functionreimar2007-09-241-10/+5
* Get rid of rather pointless assertsreimar2007-09-241-12/+0
* demux_audio.c: Fix timestamp handlinguau2007-09-241-14/+15
* removed unused function parametersnicodvb2007-09-221-8/+8
* in ts_detect_streams() moved the iteration condition inside the loopnicodvb2007-09-221-1/+4
* libnemesi support, yet another rtsp/rtp library...lu_zero2007-09-194-1/+487
* Add comment that clears up what _WINGDI_H is for.diego2007-09-181-0/+1
* reverted useless r24539ben2007-09-151-1/+0
* added monkey audio fourcc in wave headerben2007-09-151-0/+1
* Add support for cook audio (though most .rm files don't work with lavfreimar2007-09-151-0/+1
* Avoid one more code duplicationreimar2007-09-151-17/+3
* get rid of pointless size parameter for tmf_load_chunkreimar2007-09-151-8/+6
* Avoid using demux->stream->end_pos, it rarely does any good.reimar2007-09-151-3/+0
* Slightly simplify IsValidAudioPacketreimar2007-09-151-3/+0
* Simplify another two ifs into onereimar2007-09-151-7/+1
* Make one mp_msg call out of 3reimar2007-09-151-17/+5
* Simpler and more robust tar parsingreimar2007-09-151-26/+10
* Get rid of bloated ty_extension functionreimar2007-09-151-11/+3
* Do not uselessly name structsreimar2007-09-151-2/+2
* Remove another variable and reorder to avoid wasting space due to alignmentreimar2007-09-151-5/+2
* PTS should be passed as int64_t to demux_ty_CopyToDemuxPacketreimar2007-09-151-1/+1
* Remove now useless parameters from demux_ty_CopyToDemuxPacketreimar2007-09-151-6/+4
* Remove more unused code and variablesreimar2007-09-151-10/+0
* cosmetics: Fix typo in function name.diego2007-09-151-2/+2
* Revert r24446 since it breaks mingw32 build: _WINGDI_H is defined in wingdi.hzuxy2007-09-151-1/+1
* live recordings can contain 0-size type 0 chunks, ignore them insteadreimar2007-09-141-1/+1
* Move some more variable declarationsreimar2007-09-141-6/+6
* Remove tabs and trailing whitespacereimar2007-09-141-124/+124
* A few more useless ()reimar2007-09-141-4/+4
* Minor simplificationsreimar2007-09-141-4/+4
* Further simplify demux_ty_FindESHeaderreimar2007-09-141-11/+11
* Optimize demux_ty_FindESHeaderreimar2007-09-141-8/+9
* Remove some commented-out debugging codereimar2007-09-141-29/+2
* Fix demux_ty_FindESHeader so it won't overreadreimar2007-09-141-1/+1
* Simplify demux_ty_FindESPacket by reusing demux_ty_FindESHeaderreimar