aboutsummaryrefslogtreecommitdiffhomepage
path: root/libmpdemux
Commit message (Expand)AuthorAge
* Do not use ptr when it's NULL. CID 89Gravatar rtognimp2006-03-19
* Fix compilation with stupid C++ compilers that shock on valid CGravatar albeu2006-03-16
* Move the subread from FILE to stream_t.Gravatar albeu2006-03-16
* Fix a potential seek failure, fill_buffer doesn't have toGravatar albeu2006-03-16
* Try several formats instead of only YV12 if no format was explicitlyGravatar albeu2006-03-14
* le2me_32 is not necessary, tested by Diego on BE machineGravatar rathann2006-03-14
* in24/in32/fl32 little/big-endian QuickTime PCM audio supportGravatar rathann2006-03-13
* Fix seeking with cache enabled on systems using fork().Gravatar albeu2006-03-13
* recommitted version 1.22 + Rich's 1.25Gravatar nicodvb2006-03-13
* Fix compilation error introduced by last commitGravatar reimar2006-03-12
* unified failure case in muxer_new_muxer()Gravatar nicodvb2006-03-12
* fix feature pragma length checkGravatar reimar2006-03-12
* in fix_parameters() move assignment of audio bitrate to the proper block (the...Gravatar nicodvb2006-03-12
* check stream->wf and stream->bih before using them in fix_parameters(). Fixes...Gravatar nicodvb2006-03-12
* exit if calloc() fails; free(muxer) before returning NULL if muxer_init() fa...Gravatar nicodvb2006-03-12
* fix cosmetics noticed during nico's 10lGravatar rfelker2006-03-12
* fixed C99-ism introduced with previous commitGravatar nicodvb2006-03-12
* check muxer != NULL before using it; closes cid 201Gravatar nicodvb2006-03-12
* fail immediately if any of the parameters necessary to switch audio stream is...Gravatar nicodvb2006-03-12
* check sh_video before seeking; closes cid 56Gravatar nicodvb2006-03-12
* close channels file before exiting dvb_get_channels() if malloc(dvb_channels_...Gravatar nicodvb2006-03-12
* init sh_a (new audio stream) to sh_audio (current audio stream); closes cid 241Gravatar nicodvb2006-03-12
* dereference muxer->priv only after having checked muxer!=NULL in write_chunk(...Gravatar nicodvb2006-03-11
* init msec in mp_get_titleset_length() before using it; closes cid 251Gravatar nicodvb2006-03-11
* init variable in parse_mp4_object_descriptor before using it; fixes cid 237Gravatar nicodvb2006-03-11
* init delta_pts before using it; fixes cid 239Gravatar nicodvb2006-03-11
* check pce_ptr before using it; fixes cid 207Gravatar nicodvb2006-03-11
* Only MAX_STREAMS streams are allowed (cid 115)Gravatar rtognimp2006-03-11
* Fix memory leak cid 176Gravatar rtognimp2006-03-10
* Fix memory leak cid 177Gravatar rtognimp2006-03-10
* fix leak on read error (forgot to free demux packet)Gravatar reimar2006-03-09
* fix minor (i.e. unlikely to ever happen) leak when init failsGravatar reimar2006-03-09
* Fix potential read from an unitialized pointer (CID: 236)Gravatar rtognimp2006-03-09
* in demux_ogg_read_packet initialize data to whole packet, reduces code andGravatar reimar2006-03-08
* name array is too small, use strlcpy instead of strncpyGravatar reimar2006-03-08
* Missing free_demux_packet after read errorGravatar reimar2006-03-08
* Fix base64 encoding for basic auth according to RFC.Gravatar reimar2006-03-08
* missing url_free when using proxy and connect failsGravatar reimar2006-03-08
* stream_id == MAX_STREAMS is invalid, since counting starts with 0.Gravatar reimar2006-03-08
* "i < sizeof(buf)" must be "i < sizeof(buf) - 5", since later buf[i + 5] is used.Gravatar reimar2006-03-08
* If we have a tuner, use that as a reason we have audio support, and doGravatar aurel2006-03-08
* Reduce output verbosity in non-verbose mode, change some printf to mp_msg.Gravatar diego2006-03-06
* print ts_probe; 0x88 .. 0x8F in pes_private streams are not AC3 but DTS track...Gravatar nicodvb2006-03-04
* This patch fixes pcm (twos, swot) in MOV.Gravatar rtognimp2006-03-02
* removed reference to inexistent extern variableGravatar nicodvb2006-03-01
* stream_control() returns int, not voidGravatar nicodvb2006-03-01
* try to get duration from the stream layer, if an implementation of STREAM_CTR...Gravatar nicodvb2006-02-27
* implement STREAM_CTRL_GET_TIME_LENGTH to return the duration of the dvd curre...Gravatar nicodvb2006-02-27
* added cur_title to dvd_priv_t in order to keep track of dvd title currently p...Gravatar nicodvb2006-02-27
* added new stream_control() and new command: STREAM_CTRL_GET_TIME_LENGTHGravatar nicodvb2006-02-27