summaryrefslogtreecommitdiff
path: root/libavformat
Commit message (Collapse)AuthorAge
* Add fourcc for MS RLE4Kostya Shishkov2008-09-18
| | | | Originally committed as revision 15357 to svn://svn.ffmpeg.org/ffmpeg/trunk
* revert r14983, value is not sample aspect ratio, it is display aspect ratioBaptiste Coudurier2008-09-17
| | | | Originally committed as revision 15352 to svn://svn.ffmpeg.org/ffmpeg/trunk
* write number of samples in FLAC extradata.Justin Ruggles2008-09-14
| | | | | | based on a patch by Mathieu Velten (matmaul gmail com). Originally committed as revision 15324 to svn://svn.ffmpeg.org/ffmpeg/trunk
* add error message for unsupported codecs in WAVE.Justin Ruggles2008-09-14
| | | | | | Resolves issue 623. Originally committed as revision 15322 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Reindent after r15317.Ronald S. Bultje2008-09-14
| | | | Originally committed as revision 15318 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Rename RTSP_SERVER_RDT to RTSP_SERVER_REAL, because RDT (the transportRonald S. Bultje2008-09-14
| | | | | | | protocol) is not strictly related to the server type (Real servers can stream both RDT and RTP). Originally committed as revision 15317 to svn://svn.ffmpeg.org/ffmpeg/trunk
* matroskadec: simplify, first_timecode is already in the indexAurelien Jacobs2008-09-12
| | | | | | no need to duplicate it Originally committed as revision 15302 to svn://svn.ffmpeg.org/ffmpeg/trunk
* matroskadec: prevent seeking before the first keyframe of the reference streamAurelien Jacobs2008-09-11
| | | | Originally committed as revision 15301 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Reindent after r15927, see discussion in "[PATCH] rtsp cleanup part 1:Ronald S. Bultje2008-09-11
| | | | | | remove duplicate code" thread on ML. Originally committed as revision 15298 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Factorize out common code for opening of the RTP parsing context betweenRonald S. Bultje2008-09-11
| | | | | | | SDP and RTSP into a new function. See discussion on ML in "[PATCH] rtsp cleanup part 1: remove duplicate code" thread. Originally committed as revision 15297 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Clarify convergence_duration.Michael Niedermayer2008-09-10
| | | | Originally committed as revision 15291 to svn://svn.ffmpeg.org/ffmpeg/trunk
* set bits_per_coded_sample according to new lavc apiBaptiste Coudurier2008-09-09
| | | | Originally committed as revision 15289 to svn://svn.ffmpeg.org/ffmpeg/trunk
* matroskadec: demux relevant subtitle packets after a seekAurelien Jacobs2008-09-09
| | | | | | only works for subtitle tracks which were properly indexed up to the seek point Originally committed as revision 15284 to svn://svn.ffmpeg.org/ffmpeg/trunk
* matroskadec: ensure that overlapping subtitles are not added to the indexAurelien Jacobs2008-09-09
| | | | Originally committed as revision 15283 to svn://svn.ffmpeg.org/ffmpeg/trunk
* matroskadec: after seeking, skip up to the desired timestamp instead ofAurelien Jacobs2008-09-09
| | | | | | the desired stream Originally committed as revision 15282 to svn://svn.ffmpeg.org/ffmpeg/trunk
* matroskadec: move timecode calculation a little earlierAurelien Jacobs2008-09-09
| | | | | | so as to be able to use it in other part of the code Originally committed as revision 15281 to svn://svn.ffmpeg.org/ffmpeg/trunk
* matroskadec: sanitize track time_scale before using itAurelien Jacobs2008-09-09
| | | | | | fix issue628 Originally committed as revision 15280 to svn://svn.ffmpeg.org/ffmpeg/trunk
* print stream index in decimal not in hex, easier for debuggingBaptiste Coudurier2008-09-09
| | | | Originally committed as revision 15279 to svn://svn.ffmpeg.org/ffmpeg/trunk
* set block align in av_write_header if not set, fix issue #489Baptiste Coudurier2008-09-08
| | | | Originally committed as revision 15277 to svn://svn.ffmpeg.org/ffmpeg/trunk
* write copyright metadata tagBaptiste Coudurier2008-09-08
| | | | Originally committed as revision 15276 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Bump Major version, this commit is almost just renaming bits_per_sample toLuca Abeni2008-09-08
| | | | | | | | | | | bits_per_coded_sample but that cannot be done seperately. Patch by Luca Abeni Also reset the minor version and fix the forgotton change to libfaad. Note: The API/ABI should not be considered stable yet, there still may be a change done here or there if some developer has some cleanup ideas and patches! Originally committed as revision 15262 to svn://svn.ffmpeg.org/ffmpeg/trunk
* terminate tag tables by CODEC_ID_NONEBaptiste Coudurier2008-09-08
| | | | Originally committed as revision 15259 to svn://svn.ffmpeg.org/ffmpeg/trunk
* set default bps to 16 in wav headerBaptiste Coudurier2008-09-07
| | | | Originally committed as revision 15239 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Implement RDT-specific data parsing routines. After these changes, simpleRonald S. Bultje2008-09-07
| | | | | | | playback of RTSP/RDT streams should work. See discussion in "Realmedia patch" thread on ML. Originally committed as revision 15237 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Reindent after previous patch.Ronald S. Bultje2008-09-07
| | | | Originally committed as revision 15236 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Implement a RDT-specific SET_PARAMETER command that subscribes to theRonald S. Bultje2008-09-07
| | | | | | | first stream in a RTSP/RDT session. See discussion in "Realmedia patch" thread on ML. Originally committed as revision 15235 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add dynamic payload handlers to rdt.c. These follow the same API as the onesRonald S. Bultje2008-09-07
| | | | | | | | | | | | | | | | | | in rtpdec.c, so that they can be shared and used in the same way in rtsp.c. The handlers, since they are specific for RDT, are registered in rdt.c and a new registration function is thus called from allformats.c. The dynamic payload handler also implements RDT-specific SDP-line parsing for OpaqueData and StartTime, which are specific for RDT and needed for proper playback. OpaqueData contains one or a list ("MLTI") of "MDPR" chunks that can be parsed by the rmdec.c function ff_rm_read_mdpr_codecdata(). To use this function, we create a new rdt_demuxer, which has the same private data as the rm_demuxer. The resulting AVFormatContext created with _open_stream() can thus be used to call functions in the RM demuxer. See discussion in "Realmedia patch" thread on ML. Originally committed as revision 15234 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Give register_dynamic_payload_handler() in rtpdec.c a ff_ prefix and exportRonald S. Bultje2008-09-07
| | | | | | | it so that I can use it in rdt.c as well. See discussion in "Realmedia patch" thread on ML. Originally committed as revision 15233 to svn://svn.ffmpeg.org/ffmpeg/trunk
* bump lavf micro version to allow checking for the matroska/ASS bugfix in r15211Aurelien Jacobs2008-09-07
| | | | Originally committed as revision 15232 to svn://svn.ffmpeg.org/ffmpeg/trunk
* matroskadec: remove now useless vstream and is_video_key_frameAurelien Jacobs2008-09-06
| | | | Originally committed as revision 15231 to svn://svn.ffmpeg.org/ffmpeg/trunk
* matroskadec: remove useless bracesAurelien Jacobs2008-09-06
| | | | Originally committed as revision 15230 to svn://svn.ffmpeg.org/ffmpeg/trunk
* matroskadec: ensure that the timecode added to the index are is the oneAurelien Jacobs2008-09-06
| | | | | | | of the actual keyframe block, and not the one of the start of the cluster containing this block. Originally committed as revision 15229 to svn://svn.ffmpeg.org/ffmpeg/trunk
* do not fail if audio is uncompressed and frame size is not set, just set itBaptiste Coudurier2008-09-05
| | | | Originally committed as revision 15216 to svn://svn.ffmpeg.org/ffmpeg/trunk
* simplify bps code by using av_get_bits_per_sampleBaptiste Coudurier2008-09-05
| | | | Originally committed as revision 15215 to svn://svn.ffmpeg.org/ffmpeg/trunk
* matroskadec: fix ASS subtitle track packets before emitting themAurelien Jacobs2008-09-04
| | | | | | | | | Matroska does some butchering when storing the ASS lines. The start and end time are removed (because they are duplicated in the container). The matroska_fix_ass_packet() function simply restore those start and end time in ASS lines to ensure our ASS packets comply with the ASS spec. Originally committed as revision 15211 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix msgsm in wav, do not set blkalign to frame size, this is wrong,Baptiste Coudurier2008-09-04
| | | | | | all samples have correct blkalign set to 65 Originally committed as revision 15209 to svn://svn.ffmpeg.org/ffmpeg/trunk
* matroska: subtitle display duration must be stored in pkt->convergence_durationAurelien Jacobs2008-09-04
| | | | Originally committed as revision 15206 to svn://svn.ffmpeg.org/ffmpeg/trunk
* set block align and frame size for gsm in aiffBaptiste Coudurier2008-09-04
| | | | Originally committed as revision 15203 to svn://svn.ffmpeg.org/ffmpeg/trunk
* cosmetics, remove whitespaceBaptiste Coudurier2008-09-04
| | | | Originally committed as revision 15198 to svn://svn.ffmpeg.org/ffmpeg/trunk
* actually write dac3 atom, patch by Kurtnoise, kurtnoise at free dot frKurtnoise2008-09-04
| | | | Originally committed as revision 15197 to svn://svn.ffmpeg.org/ffmpeg/trunk
* skip 2 bytes more when parsing ac3 frame, syncword 16bits + crc 16bits,Damiano Galassi2008-09-04
| | | | | | patch by Damiano Galassi, damiog at gmail dot com Originally committed as revision 15196 to svn://svn.ffmpeg.org/ffmpeg/trunk
* change the logic to mux 13818-3 and 11172-3 in mp4, less codeBaptiste Coudurier2008-09-03
| | | | Originally committed as revision 15190 to svn://svn.ffmpeg.org/ffmpeg/trunk
* forbid mp3 < 16000hz in anything except movBaptiste Coudurier2008-09-03
| | | | Originally committed as revision 15189 to svn://svn.ffmpeg.org/ffmpeg/trunk
* dirac muxing support in mp4/movBaptiste Coudurier2008-09-03
| | | | Originally committed as revision 15188 to svn://svn.ffmpeg.org/ffmpeg/trunk
* cosmetics, move up mpeg1video mp4 objecttypeBaptiste Coudurier2008-09-03
| | | | Originally committed as revision 15187 to svn://svn.ffmpeg.org/ffmpeg/trunk
* cosmetics, change values to hex since mp4ra use hexBaptiste Coudurier2008-09-03
| | | | Originally committed as revision 15186 to svn://svn.ffmpeg.org/ffmpeg/trunk
* cosmetics, vertical alignBaptiste Coudurier2008-09-03
| | | | Originally committed as revision 15185 to svn://svn.ffmpeg.org/ffmpeg/trunk
* ac3 muxing support in mov/mp4/m4vBaptiste Coudurier2008-09-03
| | | | Originally committed as revision 15184 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Change doxygen comment: Clarify when av_write_trailer should be called.Reimar Döffinger2008-09-03
| | | | Originally committed as revision 15181 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add AVPacket.convergence_duration.Michael Niedermayer2008-09-03
| | | | Originally committed as revision 15179 to svn://svn.ffmpeg.org/ffmpeg/trunk