| Commit message (Expand) | Author | Age | Files | Lines |
* | Add support for attachments in lavf demuxer. | eugeni | 2008-01-30 | 1 | -0/+7 |
* | Add a comment to the #if 0 | reimar | 2008-01-29 | 1 | -1/+1 |
* | Check that index is still within bounds of samples array. | reimar | 2008-01-29 | 1 | -0/+4 |
* | Make sure chunkmap values are within bounds when using them. | reimar | 2008-01-29 | 1 | -2/+3 |
* | Do not pointlessly read data, just skip it. | reimar | 2008-01-29 | 1 | -2/+1 |
* | Disable reading of flac metadata, mere metadata is not worth such a mess. | reimar | 2008-01-29 | 1 | -1/+3 |
* | Properly check length of flac metadata. | reimar | 2008-01-29 | 1 | -0/+2 |
* | Fix r25817 to not always destroy codec_tag, this broke playback of e.g. ape f... | reimar | 2008-01-29 | 1 | -3/+6 |
* | Use defines to give names to the different seek flags. | reimar | 2008-01-29 | 25 | -60/+61 |
* | Make mov subtitles work with -ass | reimar | 2008-01-29 | 1 | -1/+1 |
* | clarify comments/docs about lav* being the preferred place to implement new | ivo | 2008-01-28 | 1 | -2/+4 |
* | Support CODEC_ID_MOV_TEXT | reimar | 2008-01-28 | 1 | -0/+2 |
* | copy note on new demuxers and codecs to the top of the array as well to be | ivo | 2008-01-28 | 1 | -0/+3 |
* | note on new demuxers and codecs, add them to lav* instead of libmp* | ivo | 2008-01-28 | 1 | -0/+2 |
* | Consistently use uppercase filename as multiple inclusion guard. | diego | 2008-01-28 | 1 | -3/+3 |
* | Support mov subtitle format directly instead of converting to text in the dem... | reimar | 2008-01-27 | 1 | -9/+4 |
* | Prefer lavf mov demuxer over our own, it should work better most of the time ... | reimar | 2008-01-27 | 1 | -0/+1 |
* | Simplify init_vobsub: pass palette via extradata. | reimar | 2008-01-26 | 1 | -8/+3 |
* | 100l, inverted condition for AVSEEK_FLAG_BACKWARD | reimar | 2008-01-26 | 1 | -0/+1 |
* | Used wrong condition for using AVSEEK_FLAG_BACKWARD, it should depend on | reimar | 2008-01-26 | 1 | -2/+3 |
* | Cosmetics: remove some trailing whitespace | reimar | 2008-01-26 | 1 | -17/+17 |
* | Add QDM2 codec identifier | reimar | 2008-01-26 | 1 | -0/+1 |
* | Partially support vobsub subtitles from lavf demuxers (palette support missing) | reimar | 2008-01-26 | 1 | -0/+2 |
* | in the crazy ES probing code return DEMUXER_TYPE_MPEG_ES (mpeg12v) only if we... | nicodvb | 2008-01-26 | 1 | -1/+4 |
* | in the PMT stream_type==0x11 indicates AAC in LATM streams, that now libfaad ... | nicodvb | 2008-01-26 | 1 | -0/+1 |
* | Allow overriding the codec_tag for audio codecs, and always override | rtogni | 2008-01-20 | 1 | -3/+13 |
* | Fix endless loop if nAvgBytesPerSec is 0. | reimar | 2008-01-19 | 1 | -0/+1 |
* | Avoid a division by 0 if i_bps is 0. | reimar | 2008-01-19 | 1 | -1/+1 |
* | Add name to email address. | diego | 2008-01-19 | 1 | -1/+2 |
* | Put bff_mask into muxer context instead of a global variable. | reimar | 2008-01-13 | 1 | -6/+7 |
* | Mark qt default palette tables as const | reimar | 2008-01-13 | 1 | -5/+5 |
* | Make all demuxer_desc_t const, thus moving them to .rodata | reimar | 2008-01-13 | 36 | -88/+88 |
* | First step towards making all demuxer_desc_t const | reimar | 2008-01-13 | 2 | -4/+4 |
* | Remove a useless assignment (there is an if just a few lines above | reimar | 2008-01-13 | 1 | -1/+1 |
* | Add a forgotten #ifdef USE_ASS around ass_free_track | reimar | 2008-01-13 | 1 | -0/+2 |
* | moved pes_header from file-static to send_mpeg_pes_packet_ll() | nicodvb | 2008-01-13 | 1 | -2/+1 |
* | Write functions used by send_mpeg_*_packet may _not_ modify data | reimar | 2008-01-12 | 2 | -7/+7 |
* | ps1_header and ps2_header should be const | reimar | 2008-01-12 | 1 | -2/+2 |
* | Add a few "const" attributes. | reimar | 2008-01-12 | 1 | -2/+2 |
* | Add libass support to demux_lavf. | eugeni | 2008-01-12 | 1 | -2/+12 |
* | Instead of keeping attachments in mkv demuxer, use demuxer_add_attachment(). | eugeni | 2008-01-12 | 1 | -44/+1 |
* | Add demuxer interface for attachments. | eugeni | 2008-01-12 | 2 | -0/+36 |
* | Remove global_ass_track. Instead create an ass_track for each 't' track. | eugeni | 2008-01-11 | 1 | -1/+2 |
* | Move all subtitle parsing from mkv demuxer to update_subtitles(). | eugeni | 2008-01-11 | 1 | -22/+1 |
* | Init and destroy ass_tracks in demuxer.c based on sh_sub->type value. | eugeni | 2008-01-11 | 2 | -40/+19 |
* | Set extradata for subtitle tracks in mkv demuxer. | eugeni | 2008-01-11 | 1 | -0/+4 |
* | Add extradata to sh_sub_t. | eugeni | 2008-01-11 | 2 | -0/+3 |
* | Factorize private data decoding for subtitle tracks in mkv demuxer. | eugeni | 2008-01-11 | 1 | -20/+12 |
* | Codecdata must always be malloc'd, fixes free being called with an | reimar | 2008-01-09 | 1 | -2/+4 |
* | Deallocate audio track codecdata. | eugeni | 2008-01-07 | 1 | -0/+1 |
* | Fix illegal identifiers: Names starting with __ or _ and uppercase are reserved | diego | 2008-01-06 | 6 | -16/+16 |
* | Don't overread audio data | rtogni | 2008-01-06 | 1 | -1/+14 |
* | Don't dynamically allocate sub_packet_lengths[] in raac demuxing. | rtogni | 2008-01-06 | 1 | -3/+1 |
* | wrapper functions to get/set angle: the wrapping is needed to RESYNC the demu... | nicodvb | 2008-01-05 | 2 | -0/+55 |
* | in the PMT stream_type==0x11 identified AAC in LATM-over-LOAS syntax that isn... | nicodvb | 2008-01-05 | 1 | -1/+0 |
* | Add multiple inclusion guards to all header files that lack them. | diego | 2008-01-01 | 6 | -0/+24 |
* | Consistently use just the name of the #ifdef directive in #endif comments. | diego | 2008-01-01 | 1 | -1/+1 |
* | Fix wrong #endif comment that does not match the #ifdef directive. | diego | 2008-01-01 | 1 | -1/+1 |
* | Add explanatory comments to the #endif part of multiple inclusion guards. | diego | 2007-12-31 | 8 | -8/+8 |
* | Add some const/static qualifiers as appropriate | reimar | 2007-12-24 | 2 | -5/+5 |
* | Use realloc_struct in more places for consistency | reimar | 2007-12-24 | 1 | -3/+3 |
* | Get rid of some of the more excessive () and casts. | reimar | 2007-12-24 | 1 | -24/+24 |
* | Make sure we have an rtsp session | lu_zero | 2007-12-24 | 1 | -0/+3 |
* | Replace LOAD_LE32 etc. by AV_RL32 etc. | reimar | 2007-12-23 | 1 | -28/+8 |
* | Add a read_varlen function to reduce some code duplication | reimar | 2007-12-23 | 1 | -44/+24 |
* | 100l, fix compilation. | reimar | 2007-12-22 | 1 | -2/+2 |
* | Set is_streamed correctly, should make network playback work more reliably. | reimar | 2007-12-22 | 1 | -0/+1 |
* | Get rid of URLProtocol mess (especially problematic since it made use | reimar | 2007-12-22 | 1 | -34/+12 |
* | Move ds->current=NULL; further up to the free_demux_packet. | reimar | 2007-12-20 | 1 | -1/+1 |
* | Vobsub support tridx setting in .idx file. | ulion | 2007-12-19 | 1 | -2/+8 |
* | Remove useless stray #include. | diego | 2007-12-16 | 1 | -1/+0 |
* | Cosmetics: Fix indentation. | cehoyos | 2007-12-14 | 1 | -1/+1 |
* | Set correct image format for 24bit "raw " in mov files. | cehoyos | 2007-12-14 | 1 | -1/+7 |
* | Add demuxer functions for chapter feature. | ulion | 2007-12-13 | 2 | -0/+81 |
* | Fix memory leak that tmp allocated but maybe not used. | ulion | 2007-12-10 | 1 | -4/+6 |
* | Move temp variable declaration into inner loop scope. | ulion | 2007-12-10 | 1 | -2/+3 |
* | Convert vobsub custom colors from rgb to yuv using a common function. | ulion | 2007-12-09 | 1 | -1/+3 |
* | Move vobsub palette->yuv convert code into a common function. | ulion | 2007-12-08 | 1 | -9/+3 |
* | Restore y of palette into the same value range as it was in the .ifo file. | ulion | 2007-12-08 | 1 | -0/+1 |
* | Rename demuxer tags to clarify | lu_zero | 2007-12-04 | 2 | -4/+4 |
* | Remove non necessary header | lu_zero | 2007-12-04 | 2 | -51/+7 |
* | Make libnemesi use specific struct and DEMUXER_TYPE | lu_zero | 2007-12-04 | 3 | -4/+9 |
* | Make m_option_t arrays referenced by cfg-common.h const | reimar | 2007-12-02 | 3 | -3/+3 |
* | Table of ID3 genres should be const as well | reimar | 2007-12-02 | 1 | -1/+1 |
* | Fix playback of streams with more than one video track (only one supported). | cehoyos | 2007-12-02 | 1 | -1/+7 |
* | Finally replace get_uint?? by AV_RL?? | reimar | 2007-12-01 | 1 | -35/+31 |
* | Get rid of annoying, space-wasting sizeof(uint32_t) | reimar | 2007-12-01 | 1 | -2/+2 |
* | Bigendian fix for ogg in AVI | reimar | 2007-12-01 | 1 | -2/+4 |
* | Use a loop instead of doing the same thing three times | reimar | 2007-12-01 | 1 | -14/+7 |
* | Use a pointer variable for extradata to simplify init_avi_with_ogg | reimar | 2007-12-01 | 1 | -4/+9 |
* | Set sh_video->format when parsing aviheader, otherwise it might never | reimar | 2007-12-01 | 1 | -0/+1 |
* | Remove some pointless casts | reimar | 2007-12-01 | 1 | -2/+2 |
* | Create correct extradata for vorbis audio when used as avi sub-demuxer | reimar | 2007-12-01 | 1 | -0/+1 |
* | Fix some typos in comments, grammar is still bad. | reimar | 2007-12-01 | 1 | -3/+3 |
* | Fix typos in comments to stop them hurting my eyes | reimar | 2007-12-01 | 1 | -5/+5 |
* | simplify | michael | 2007-11-30 | 1 | -1/+1 |
* | Enable -rtsp-port for nemesi | lu_zero | 2007-11-27 | 1 | -2/+2 |
* | Bring (de)muxer_lavf up to date with the libavformat API changes introduced b... | iive | 2007-11-23 | 2 | -5/+5 |
* | Enable Theora support | lu_zero | 2007-11-23 | 1 | -0/+1 |
* | Fix compilation error. | iive | 2007-11-22 | 1 | -1/+1 |
* | AAC support (aac-hbr only) | lu_zero | 2007-11-21 | 1 | -0/+1 |
* | Media Format to fourcc conversion (from amol) | lu_zero | 2007-11-21 | 1 | -22/+42 |
* | Remove unused function write_psm_block(), fixes the warning: | diego | 2007-11-21 | 1 | -19/+0 |
* | Musepack SV8 lavc decoder support | kostya | 2007-11-20 | 1 | -0/+1 |
* | 100l, fix uint32_t* instead of uint32_t typo in demux_mf type->fourcc table | reimar | 2007-11-18 | 1 | -1/+1 |
* | Remove a pointless #ifdef | reimar | 2007-11-17 | 1 | -4/+0 |
* | Replace if-else constructs for type -> fourcc mapping by a table in demux_mf | reimar | 2007-11-17 | 1 | -13/+24 |
* | Print warning about encrypted audio tracks | rtogni | 2007-11-15 | 1 | -0/+2 |
* | add tif support to demux_mf | compn | 2007-11-14 | 1 | -0/+2 |
* | Check for second stream presence, fixes single stream playback (from amol) | lu_zero | 2007-11-13 | 1 | -0/+5 |
* | 10l video != audio | lu_zero | 2007-11-13 | 1 | -1/+1 |
* | support extradata for audio streams | lu_zero | 2007-11-13 | 1 | -4/+13 |
* | fetch metadata for audio (from amol) | lu_zero | 2007-11-13 | 1 | -2/+3 |
* | Revert stray commit r25027 | lu_zero | 2007-11-13 | 1 | -22/+7 |
* | Check for second stream presence, fixes single stream playback (from amol) | lu_zero | 2007-11-13 | 1 | -0/+5 |
* | 10l video != audio | lu_zero | 2007-11-12 | 1 | -1/+1 |
* | support extradata for audio streams | lu_zero | 2007-11-12 | 1 | -5/+14 |
* | fetch metadata for audio (from amol) | lu_zero | 2007-11-12 | 1 | -2/+3 |
* | Add support for mpeg4video-es (from dario) | lu_zero | 2007-11-12 | 1 | -0/+3 |
* | fix forcefps (from amol) | lu_zero | 2007-11-12 | 1 | -4/+10 |
* | Refactor demux_nemesi (from amol) | lu_zero | 2007-11-12 | 1 | -61/+71 |
* | Fix typo in error message | reimar | 2007-11-06 | 1 | -1/+1 |
* | reindented | nicodvb | 2007-11-05 | 1 | -1/+1 |
* | 10l, setting a non-existent timestamp (default 0.0) when the pts flag isn't s... | nicodvb | 2007-11-05 | 1 | -0/+1 |
* | in video_read_frame() set the keyframe flag in demuxer->video when dealing with | nicodvb | 2007-11-02 | 1 | -0/+2 |
* | prevent unlikely memleak | nicodvb | 2007-11-02 | 1 | -2/+5 |
* | 10l, priv->use_psm can be 1 only if the format is genmpeg2 | nicodvb | 2007-11-02 | 1 | -3/+5 |
* | add streams to the PSM only if priv->use_psm is set, otherwise the muxer would | nicodvb | 2007-11-02 | 1 | -1/+1 |
* | moved to fix_parameters() the decision of the necessity of the PSM based on t... | nicodvb | 2007-11-02 | 1 | -2/+3 |
* | removed no more needed variable | nicodvb | 2007-11-02 | 1 | -1/+1 |
* | moved to fix_parameters() the code that decides if the PSM is needed | nicodvb | 2007-11-02 | 1 | -11/+10 |
* | repeat the PSM once every second (in terms of delta_scr) otherwise playing th... | nicodvb | 2007-11-02 | 1 | -0/+23 |
* | remove the registration descriptor from the PSM: writing the fourcc in it mak... | nicodvb | 2007-11-02 | 1 | -7/+2 |
* | 100% cosmetics: reformatted with tabs and symmetric braces and removed useles... | nicodvb | 2007-11-02 | 1 | -319/+324 |
* | Clean up some fields in stheader.h structs | uau | 2007-11-01 | 1 | -3/+2 |
* | Remove unused variable: | diego | 2007-10-30 | 1 | -1/+1 |
* | Disable function that is only used in disabled code, fixes warning: | diego | 2007-10-30 | 1 | -0/+2 |
* | Fix fps guessing | lu_zero | 2007-10-29 | 1 | -3/+11 |
* | Update to use newer libnemesi, should fix desync, fps guessing may fail now | lu_zero | 2007-10-29 | 1 | -10/+4 |
* | removed silly #if 1 | nicodvb | 2007-10-27 | 1 | -2/+0 |
* | DEMUXER_TYPE_TV is always defined, thus removed corresponding #ifdef USE_TV. | nicodvb | 2007-10-27 | 1 | -2/+0 |
* | reindented previously modified code | nicodvb | 2007-10-27 | 1 | -4/+4 |
* | implemented DEMUXER_CTRL_IDENTIFY_PROGRAM to permit program switching | nicodvb | 2007-10-27 | 1 | -0/+54 |
* | permit identification and selection of programs | nicodvb | 2007-10-27 | 1 | -0/+29 |
* | permit the transititions no stream <-> some streams and viceversa (needed for... | nicodvb | 2007-10-27 | 1 | -3/+11 |
* | moved to a new function handle_stream() the code to parse the streams and ass... | nicodvb | 2007-10-27 | 1 | -111/+115 |
* | in process_userdata() move debugging messages from stdout to stderr | nicodvb | 2007-10-27 | 1 | -4/+4 |
* | removed funny calls to fflush(stdout) after mp_msg() | nicodvb | 2007-10-27 | 1 | -7/+7 |
* | removed more empty spaces and empty lines | nicodvb | 2007-10-27 | 1 | -3/+1 |
* | replaced giant if() with if(pre-calculated variable) (there was even a bug: P... | nicodvb | 2007-10-27 | 1 | -5/+1 |
* | cosmetics: removed tabs/empty lines/trailing spaces and done a partial reform... | nicodvb | 2007-10-27 | 1 | -82/+72 |
* | cosmetics: moved to function find_video_codec() and reused in video_read_*() ... | nicodvb | 2007-10-27 | 1 | -45/+42 |
* | demuxer.c: Remove useless code | uau | 2007-10-25 | 1 | -21/+17 |
* | add support for wavpack into matroska | aurel | 2007-10-21 | 2 | -0/+5 |
* | Remove unused code and fix warning: | diego | 2007-10-21 | 1 | -14/+0 |
* | Mark constant argument of mp_header_process_sequence_header as such. | diego | 2007-10-19 | 2 | -2/+2 |
* | add nellymoser codec to mplayer with internal fourcc NELL | compn | 2007-10-16 | 1 | -0/+1 |
* | Add -lavfdopts cryptokey | reimar | 2007-10-14 | 1 | -0/+22 |
* | support Y800 in raw video | diego | 2007-10-13 | 1 | -0/+1 |
* | in update_stats() removed a wrong 'else' that would prevent h264 headers to b... | nicodvb | 2007-10-04 | 1 | -1/+1 |
* | Fix missing subtitles after seeking back | uau | 2007-10-04 | 1 | -0/+1 |
* | support for DTS as specified in DVB (untested) | nicodvb | 2007-10-03 | 1 | -0/+8 |
* | Format 0x01 cannot be used with "AMV IMA ADPCM", because it belongs to normal... | voroshil | 2007-10-03 | 1 | -0/+2 |
* | Set biWidth/biHeight in fli demuxer | reimar | 2007-10-02 | 1 | -0/+2 |
* | Make sure there is no uninitialized data in BITMAPINFOHEADER created by fli d... | reimar | 2007-10-02 | 1 | -1/+1 |
* | Remove ugly unused struct name from typedef | reimar | 2007-10-02 | 1 | -1 |