log libmpdemux/demuxer.c @ 25831:9463ef1a0e63

age author description
2008-01-13 reimar Make all demuxer_desc_t const, thus moving them to .rodata
2008-01-13 reimar First step towards making all demuxer_desc_t const
2008-01-13 reimar Remove a useless assignment (there is an if just a few lines above
2008-01-13 reimar Add a forgotten #ifdef USE_ASS around ass_free_track
2008-01-12 eugeni Add demuxer interface for attachments.
2008-01-11 eugeni Remove global_ass_track. Instead create an ass_track for each 't' track.
2008-01-11 eugeni Init and destroy ass_tracks in demuxer.c based on sh_sub->type value.
2008-01-11 eugeni Add extradata to sh_sub_t.
2008-01-07 eugeni Deallocate audio track codecdata.
2008-01-05 nicodvb wrapper functions to get/set angle: the wrapping is needed to RESYNC the demuxer; patch by oattila chello hu
2007-12-20 reimar Move ds->current=NULL; further up to the free_demux_packet.
2007-12-13 ulion Add demuxer functions for chapter feature.
2007-12-10 ulion Fix memory leak that tmp allocated but maybe not used.
2007-12-04 lu_zero Make libnemesi use specific struct and DEMUXER_TYPE
2007-12-01 reimar Fix typos in comments to stop them hurting my eyes
2007-10-25 uau demuxer.c: Remove useless code
2007-10-04 uau Fix missing subtitles after seeking back
2007-09-19 lu_zero libnemesi support, yet another rtsp/rtp library...
2007-08-28 diego cosmetics: typo fix UNSUPORTED --> UNSUPPORTED
2007-08-09 reimar When a new subtitle stream becomes available check if it is the one that
2007-07-27 reimar Make sure fformat is set before use
2007-07-27 reimar Remove some unneeded extern variable declarations
2007-06-24 reimar make opt argument of demux_info_get const.
2007-06-23 reimar Fix memleak due to not freeing demuxer->s_streams
2007-06-17 zuxy More accurate seeking for demuxers lacking DEMUXER_CTRL_GET_TIME_LENGTH control
2007-06-05 reimar Replace implicit use of fast_memcpy via macro by explicit use to allow
2007-04-26 diego Simplify preprocessor directives: There is a general variable for
2007-04-22 reimar Cosmetics: remove duplicate space in ifdef
2007-04-22 nicodvb demuxer_desc_lavf_preferred depends on USE_LIBAVFORMAT or USE_LIBAVFORMAT_SO
2007-04-14 reimar Add lavf_preferred demuxer for lavf formats we want to be probed
2007-03-15 diego Add explicit location for headers from the stream/ directory.
2007-03-11 uau Move the sh_audio->delay field to mpctx->delay.
2007-02-05 rathann Fix a few gcc warnings, approved by Diego and Reimar.
2007-01-05 reimar Make ds_get_next_pts return MP_NOPTS_VALUE instead of -1 on error,
2006-12-31 nicodvb removed unused variable
2006-12-31 nicodvb use demuxer->stream_pts rather than stream_control(STREAM_CTRL_GET_CURRENT_TIME)
2006-12-31 nicodvb added stream_pts to demuxer_t and demux_packet_t to hold the time value reported by the stream layer
2006-12-28 aurel don't compile demux_mpc.c when libmpcdec is disabled
2006-11-16 nicodvb added code to switch video stream
2006-11-13 reimar Make subtitle stream handling more similar to audio and video streams.
2006-11-12 nicodvb consistency fix: STREAM_CTRL_GET_TIME_LENGTH and STREAM_CTRL_GET_CURRENT_TIME now return time in (double) seconds
2006-11-11 nicodvb removed duplicated check in demuxer_seek_chapter
2006-11-11 nicodvb in demux_seek() if STREAM_CTRL_SEEK_TO_CHAPTER suceeds call DEMUXER_CTRL_RESYNC to notify the demuxer of the change
2006-11-07 nicodvb added demuxer_get_current_time() to get the current playtime (possibly aided by the stream layer)
2006-11-07 nicodvb now demux_seek() tries to seek aided by the stream layer, if possible
2006-10-20 reimar Cosmetics: indentation fix indentation broken by last two demuxer.c commits
2006-10-20 reimar Fix opening of demuxers without check_file function, broken by r20309.
2006-10-19 reimar Try other demuxers if open() fails.
2006-10-05 reimar Simplify: replace malloc + memset 0 by calloc
2006-09-17 ods15 conditional declerations are unnecessary
2006-09-17 ods15 Add demux_nut to MPlayer repo
2006-08-26 reimar Get rid of demux_aid_vid_mismatch mess.
2006-08-21 nicodvb 100l: *chapter_name was copied from the pointer rather than strupd()-ed (and next free()d in mplayer.c
2006-08-21 nicodvb demuxer_seek_chapter() returns informations about chapters count and name
2006-08-18 nicodvb clarification in a comment
2006-08-18 nicodvb support relative seeking in the stream-driven case
2006-08-18 nicodvb added first revision of demuxer_seek_chapter()
2006-08-16 reimar Update information and print new value when demux_info_add is called
2006-08-06 eugeni Add matroska chapter seeking capability.
2006-07-13 reynaldo marks several string parameters as const, as they are not modified inside the function, Patch by Stefan Huehner, stefan AT huehner-org