summaryrefslogtreecommitdiff
path: root/libavformat
Commit message (Collapse)AuthorAge
* 10l: WavPack demuxer forgot to seek back to initial position after blockKostya Shishkov2009-11-06
| | | | | | contents parsing (for custom sampling rate). Originally committed as revision 20468 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix a typo in rtp_h264.c:parse_h264_sdp_line(). Patch by Gordon IrlamGordon Irlam2009-11-05
| | | | | | | | | (gordonipub2 AT gordoni DOT com). This fixes H.264 over RTP when the SDP contains a "framesize:" attribute (for example, rtsp://video3.americafree.tv/AFTVCartoonsH264250.sdp ) Originally committed as revision 20463 to svn://svn.ffmpeg.org/ffmpeg/trunk
* 10l, typoBaptiste Coudurier2009-11-05
| | | | Originally committed as revision 20462 to svn://svn.ffmpeg.org/ffmpeg/trunk
* If custom sampling rate is set in WavPack file, parse first block to findKostya Shishkov2009-11-05
| | | | | | | | actual value. This fixes issue 1518. Originally committed as revision 20461 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Initialize block_parsed before reading first block header in WavPack demuxer,Kostya Shishkov2009-11-05
| | | | | | it will be useful later. Originally committed as revision 20460 to svn://svn.ffmpeg.org/ffmpeg/trunk
* do not redundantly set stream nb_frames, it's already set in read_sttsBaptiste Coudurier2009-11-05
| | | | Originally committed as revision 20459 to svn://svn.ffmpeg.org/ffmpeg/trunk
* compute dts shift with ctts value, cslg atom might be missing, fix #419Baptiste Coudurier2009-11-05
| | | | Originally committed as revision 20458 to svn://svn.ffmpeg.org/ffmpeg/trunk
* check that duration is set to avoid fpeBaptiste Coudurier2009-11-05
| | | | Originally committed as revision 20457 to svn://svn.ffmpeg.org/ffmpeg/trunk
* warn if stream timescale is not set and set it to 1 to avoid FPEBaptiste Coudurier2009-11-05
| | | | Originally committed as revision 20456 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Corrects two typosReynaldo H. Verdejo Pinochet2009-11-05
| | | | Originally committed as revision 20455 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Decrement probe score at unsuported bppReynaldo H. Verdejo Pinochet2009-11-05
| | | | Originally committed as revision 20454 to svn://svn.ffmpeg.org/ffmpeg/trunk
* fix \0xa9wrt metadata, to composer, fix issue #1501Baptiste Coudurier2009-11-05
| | | | Originally committed as revision 20453 to svn://svn.ffmpeg.org/ffmpeg/trunk
* add yuvs fourcc to raw.c and isom.c, fixes samples/mov/yuvs.movAndrew Wason2009-11-03
| | | | | | patch by Andrew Wason Originally committed as revision 20439 to svn://svn.ffmpeg.org/ffmpeg/trunk
* map VYUY fourcc to rawcodecBen Littler2009-11-02
| | | | | | fixes http://samples.mplayerhq.hu/V-codecs/ATI-VCR12/ATI/y422test.avi Originally committed as revision 20432 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Set the sample format for Smacker audio in the decoder rather than in theJustin Ruggles2009-11-01
| | | | | | demuxer. Originally committed as revision 20429 to svn://svn.ffmpeg.org/ffmpeg/trunk
* print packet duration when debugging timestampsBaptiste Coudurier2009-10-30
| | | | Originally committed as revision 20420 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Support demuxing teletext in DVB streams.Francesco Lavra2009-10-29
| | | | | | Original patch by Francesco Lavra, francescolavra interfree it Originally committed as revision 20414 to svn://svn.ffmpeg.org/ffmpeg/trunk
* add 2vuy fourcc to riff.c , fixes samples/V-codecs/2vuy.aviBen Littler2009-10-27
| | | | Originally committed as revision 20383 to svn://svn.ffmpeg.org/ffmpeg/trunk
* add some raw codec fourccs, fixes:Ben Littler2009-10-27
| | | | | | | | | | | | samples/V-codecs/ P422.AVI UYNV.AVI UYNY.AVI V422.AVI YUNV.AVI Originally committed as revision 20379 to svn://svn.ffmpeg.org/ffmpeg/trunk
* rtsp_close_streams frees the auth_b64 line alreadyLuca Barbato2009-10-25
| | | | Originally committed as revision 20370 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Support 3xx redirection in rtspLuca Barbato2009-10-25
| | | | | | | | | All the error codes 3xx got managed the same way. After setup/early play redirection will not be managed REDIRECT method is yet to be supported (if somebody knows a server implementing it please contact me) Originally committed as revision 20369 to svn://svn.ffmpeg.org/ffmpeg/trunk
* compute codec bitrate in mov demuxer, patch by haim alon, haim dot alter at ↵haim alon2009-10-24
| | | | | | gmail dot com Originally committed as revision 20368 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Just remove params understood by the demuxerLuca Barbato2009-10-24
| | | | | | This should unbreak certain urls. Originally committed as revision 20364 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Suppress ?params in the rtsp uriLuca Barbato2009-10-24
| | | | | | | | | | | Right now rtsp demuxer receives it's ffmpeg specific params encoded in the url That made the server receiving requests with the url ending with "?udp", "?multicast" and "?tcp". That may or may not cause problems to servers with overly strict or overly simple uri parsers Patch from Armand Bendanan (name.surnameATfreeDOTfr) Originally committed as revision 20363 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Use sdp c= line if the rtsp Transport line doesn't have a destinationLuca Barbato2009-10-24
| | | | | | | | Transport:destination in rtsp is optional, c= line in sdp is compulsory Patch from Armand Bendanan (name.surnameATfreeDOTfr) Originally committed as revision 20362 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove ancient redir demuxer.Diego Biurrun2009-10-24
| | | | | | HTTP supports redirection just fine without it. Originally committed as revision 20361 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix infinite loop with size==0 && sample_size!=0 in non interleaved avis.Michael Niedermayer2009-10-22
| | | | | | Untested, i do not have a sample. Originally committed as revision 20348 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Support non interleaved avi files that have 0<size<sample_size.Michael Niedermayer2009-10-22
| | | | | | | (No i do not have a sample its thus also untested) The new code is also simpler. Originally committed as revision 20347 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fixes detection and error reporting of non-existing files in img2.c.Samuli Valo2009-10-22
| | | | | | Patch by Samuli Valo: name surname picturall com Originally committed as revision 20346 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add comment on #endif about condition that triggers it.Ramiro Polla2009-10-21
| | | | Originally committed as revision 20337 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Seek function for TMVDaniel Verkamp2009-10-20
| | | | Originally committed as revision 20336 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Parenthesize correctly in TMV probeDaniel Verkamp2009-10-20
| | | | Originally committed as revision 20335 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Improve sofdec dectection to avoid false positives for MP2.tralph11@yahoo.com2009-10-20
| | | | | | Patch by tralph11, tralph11 yahoo Originally committed as revision 20333 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Make url_resetbuf() assert on wrong flags passed and make it static on nextBenoit Fouet2009-10-20
| | | | | | | | version bump. See thread: [FFmpeg-devel] & vs. && Date: Mon, 12 Oct 2009 14:21:06 +0200 Originally committed as revision 20330 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Move function that is only used by the MP3 muxer below the corresponding #if.Diego Biurrun2009-10-19
| | | | | | This removes the dependency of the MP2 muxer on the id3v2 object file. Originally committed as revision 20329 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add '#include "libavutil/intreadwrite.h"', necessary for AV_RB32.Diego Biurrun2009-10-19
| | | | | | This fixes the build with demuxers disabled. Originally committed as revision 20327 to svn://svn.ffmpeg.org/ffmpeg/trunk
* The MP2/MP3 muxer uses ff_id3v2_tags, so add the correct object dependency.Diego Biurrun2009-10-19
| | | | Originally committed as revision 20326 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove some duplicate object dependencies for the RTSP demuxer.Diego Biurrun2009-10-19
| | | | | | They are already covered by its dependency on the SDP demuxer. Originally committed as revision 20324 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add missing rdt.o dependency for SDP demuxer.Diego Biurrun2009-10-19
| | | | | | This fixes the build when the RTSP demuxer is disabled. Originally committed as revision 20323 to svn://svn.ffmpeg.org/ffmpeg/trunk
* check stream index validity in av_program_add_stream_indexBaptiste Coudurier2009-10-19
| | | | Originally committed as revision 20319 to svn://svn.ffmpeg.org/ffmpeg/trunk
* request mp3 frame_size to be set in has_codec_parameters, fix issue #1314Baptiste Coudurier2009-10-19
| | | | Originally committed as revision 20318 to svn://svn.ffmpeg.org/ffmpeg/trunk
* reindent after commitBaptiste Coudurier2009-10-19
| | | | Originally committed as revision 20307 to svn://svn.ffmpeg.org/ffmpeg/trunk
* In dump_format, print streams not associated with any program.Baptiste Coudurier2009-10-19
| | | | | | Fixes issue #1366. Originally committed as revision 20306 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix wrong comparison in r20304Reynaldo H. Verdejo Pinochet2009-10-19
| | | | Originally committed as revision 20305 to svn://svn.ffmpeg.org/ffmpeg/trunk
* If missing, calculate width or height from bpp andReynaldo H. Verdejo Pinochet2009-10-18
| | | | | | image size lowering the probe score too. Originally committed as revision 20304 to svn://svn.ffmpeg.org/ffmpeg/trunk
* fix indentationBaptiste Coudurier2009-10-18
| | | | Originally committed as revision 20300 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Support FourCC mjpa as MJPEG.Carl Eugen Hoyos2009-10-18
| | | | | | Fixes issue 1492. Originally committed as revision 20296 to svn://svn.ffmpeg.org/ffmpeg/trunk
* mux all stream types except audio as one pes packet per avpacket, issue #1374Baptiste Coudurier2009-10-18
| | | | Originally committed as revision 20292 to svn://svn.ffmpeg.org/ffmpeg/trunk
* fix indentation and add bracesBaptiste Coudurier2009-10-18
| | | | Originally committed as revision 20289 to svn://svn.ffmpeg.org/ffmpeg/trunk
* handle_packets takes number of packets as arg, avoid reading too muchBaptiste Coudurier2009-10-18
| | | | Originally committed as revision 20288 to svn://svn.ffmpeg.org/ffmpeg/trunk