summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Add a FLAC parser.Michael Chinen2010-12-077-24/+698
| | | | | | | | | Seek test reference updated because FLAC seeking now works properly. Fixes roundup issue 1150. Patch by Michael Chinen [mchinen at gmail] Originally committed as revision 25914 to svn://svn.ffmpeg.org/ffmpeg/trunk
* cosmetics: line wrap after last commitJustin Ruggles2010-12-071-7/+14
| | | | Originally committed as revision 25913 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add log_level_offset parameter to ff_flac_decode_frame_header(). It will be usedMichael Chinen2010-12-073-11/+12
| | | | | | | to optionally silence the error messages. Patch by Michael Chinen [mchinen at gmail] Originally committed as revision 25912 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add is_var_size and frame_or_sample_num to FLACFrameInfo and read them inMichael Chinen2010-12-072-3/+9
| | | | | | | ff_flac_decode_frame_header(). Patch by Michael Chinen [mchinen at gmail] Originally committed as revision 25911 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Check validity of the frame sync code in ff_flac_decode_frame_header().Michael Chinen2010-12-071-1/+7
| | | | | | Patch by Michael Chinen [mchinen at gmail] Originally committed as revision 25910 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Move decode_frame_header() from flacdec.c to flac.c/h to share with theMichael Chinen2010-12-073-101/+105
| | | | | | | forthcoming FLAC parser. Patch by Michael Chinen [mchinen at gmail] Originally committed as revision 25909 to svn://svn.ffmpeg.org/ffmpeg/trunk
* rtsp/rtpdec: Set the AVStream time_base directly in rtsp when it is knownMartin Storsjö2010-12-072-7/+8
| | | | | | | | | | | | This fixes cases where the RTP time base and the sample rate of the stream differ. Previously, the AVStream time_base was unconditionally set to the sample rate (which initially was set to one value when parsing the rtpmap field in the SDP, but later overridden by an a=SampleRate field). Additionally, this makes the code actually use the stream time base set in rtpmap for video codecs, instead of hardcoding it to always be 90 kHz. Originally committed as revision 25908 to svn://svn.ffmpeg.org/ffmpeg/trunk
* rtsp: Parse RealRTSP sample rate declarations from the SDPMartin Storsjö2010-12-071-0/+4
| | | | | | The RTP time base can be different from the actual content sample rate. Originally committed as revision 25907 to svn://svn.ffmpeg.org/ffmpeg/trunk
* rtpdec: Handle MP3 in RealRTSPMartin Storsjö2010-12-071-0/+7
| | | | | | | This fixes playback of a RealRTSP/MP3 URL from the RTSP samples on MultimediaWiki. Originally committed as revision 25906 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix building of object files in tools/Ramiro Polla2010-12-071-1/+1
| | | | | | Fixes issue issue2408. Originally committed as revision 25905 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add fullrange support to libx264.c x264 interfaceJason Garrett-Glaser2010-12-071-1/+3
| | | | Originally committed as revision 25904 to svn://svn.ffmpeg.org/ffmpeg/trunk
* id3v2: skip encrypted/compressed framesAnton Khirnov2010-12-071-1/+4
| | | | Originally committed as revision 25903 to svn://svn.ffmpeg.org/ffmpeg/trunk
* id3v2: use a named constant instead of 0x02Anton Khirnov2010-12-072-1/+6
| | | | Originally committed as revision 25902 to svn://svn.ffmpeg.org/ffmpeg/trunk
* In mov demuxer, read alac sample from extradata, fix #2406Baptiste Coudurier2010-12-071-0/+1
| | | | Originally committed as revision 25901 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Deprecate the use of the NO_COLOR environment variable.Stefano Sabatini2010-12-061-0/+2
| | | | Originally committed as revision 25900 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Introduce FFMPEG_FORCE_NOCOLOR, with the same meaning and use ofStefano Sabatini2010-12-062-4/+6
| | | | | | NO_COLOR (but properly prefixed for avoiding namespace conflicts). Originally committed as revision 25899 to svn://svn.ffmpeg.org/ffmpeg/trunk
* alsdec: Correct the ALS decoder by storing some parameters per-channel ratherSprezz2010-12-061-35/+68
| | | | | | than just per-block. Patch by Sprezz [sprezzatura gmx com]. Fixes Issue 2387. Originally committed as revision 25898 to svn://svn.ffmpeg.org/ffmpeg/trunk
* rtpdec_h264: Pass NAL type 0 throughMartin Storsjö2010-12-061-4/+1
| | | | | | | | According to the spec, this type shouldn't ever be used. Nevertheless, passing it through enables decoding streams which otherwise aren't decodeable. Originally committed as revision 25897 to svn://svn.ffmpeg.org/ffmpeg/trunk
* rtpdec: Skip padding bytes at the end of packetsMartin Storsjö2010-12-061-0/+6
| | | | Originally committed as revision 25896 to svn://svn.ffmpeg.org/ffmpeg/trunk
* In yadif filter, declare asm constants directly to avoid dependency on ↵Baptiste Coudurier2010-12-063-4/+7
| | | | | | libavcodec Originally committed as revision 25895 to svn://svn.ffmpeg.org/ffmpeg/trunk
* rtpdec_qcelp: Use the depacketizer for static payload types, tooMartin Storsjö2010-12-051-0/+1
| | | | Originally committed as revision 25894 to svn://svn.ffmpeg.org/ffmpeg/trunk
* rtsp: Look for RTP payload handlers for static payload types, tooMartin Storsjö2010-12-051-0/+5
| | | | Originally committed as revision 25893 to svn://svn.ffmpeg.org/ffmpeg/trunk
* rtsp: Factorize code for initializing the rtp payload handlerMartin Storsjö2010-12-051-12/+14
| | | | Originally committed as revision 25892 to svn://svn.ffmpeg.org/ffmpeg/trunk
* rtpdec: Add functions for finding depacketizers by name or payload idMartin Storsjö2010-12-052-0/+29
| | | | Originally committed as revision 25891 to svn://svn.ffmpeg.org/ffmpeg/trunk
* rtpdec: Allow dynamic payload handlers to handle static payload types, tooMartin Storsjö2010-12-051-0/+3
| | | | Originally committed as revision 25890 to svn://svn.ffmpeg.org/ffmpeg/trunk
* rtpdec: Add a dynamic payload handler for the x-Purevoice format, RFC 2658Martin Storsjö2010-12-056-2/+234
| | | | | | This fixes roundup issue 2390. Originally committed as revision 25889 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Allow to force colored output.Etienne Buira2010-12-052-3/+4
| | | | | | Patch by Etienne Buira, etienne d buira d lists a free d fr Originally committed as revision 25888 to svn://svn.ffmpeg.org/ffmpeg/trunk
* RTP/VP8: Update the warning about the VP8 payloadMartin Storsjö2010-12-052-2/+4
| | | | | | | The current implementation is incompatible with the latest spec drafts, this should be communicated clearly to the user. Originally committed as revision 25887 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add CODEC_CAP_NEG_LINESIZES.Stefano Sabatini2010-12-042-3/+9
| | | | Originally committed as revision 25886 to svn://svn.ffmpeg.org/ffmpeg/trunk
* cosmetic: indentationAurelien Jacobs2010-12-041-2/+2
| | | | Originally committed as revision 25885 to svn://svn.ffmpeg.org/ffmpeg/trunk
* add subtitle codec autodetectionAurelien Jacobs2010-12-042-1/+10
| | | | Originally committed as revision 25884 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add forgotten deprecation to avcodec_pix_fmt_string().Stefano Sabatini2010-12-041-0/+1
| | | | Originally committed as revision 25883 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Cosmetics: add empty line which was previously removed.Stefano Sabatini2010-12-041-0/+1
| | | | | | Improve readability. Originally committed as revision 25882 to svn://svn.ffmpeg.org/ffmpeg/trunk
* 10l, add ff_pw_1 to dsputil_mmx for yadif sse2Baptiste Coudurier2010-12-041-0/+1
| | | | Originally committed as revision 25881 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Port libmpcodecs hqdn3d filter.Baptiste Coudurier2010-12-047-2/+378
| | | | | | Patch by Baptiste with some fixes by me. Originally committed as revision 25880 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Deprecate avcodec_pix_fmt_string() in favor ofStefano Sabatini2010-12-046-26/+37
| | | | | | av_get_pix_fmt_string(), added to libavutil/pixdesc.h. Originally committed as revision 25879 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Implement av_image_alloc() and use it inStefano Sabatini2010-12-046-14/+51
| | | | | | avfilter_default_get_video_buffer(). Originally committed as revision 25878 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Declare sse2 and ssse2 function in yadif headerBaptiste Coudurier2010-12-041-0/+8
| | | | Originally committed as revision 25877 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Try to improve reordered_opaque doxy.Michael Niedermayer2010-12-041-2/+6
| | | | Originally committed as revision 25876 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Detect incorrect padding with wrong stuffing codes used by NEC N-02B.Michael Niedermayer2010-12-041-0/+7
| | | | | | | | I dont know if this is the best way to handle it. But it fixes http://kuwatan.jp/temp/n-02b.3gp Fixes issue 2373. Originally committed as revision 25875 to svn://svn.ffmpeg.org/ffmpeg/trunk
* yadif sse2/ssse3 optimizationsBaptiste Coudurier2010-12-043-212/+294
| | | | Originally committed as revision 25874 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Count non-header data towards intra block bit count in MJPEG encoderBobby Bingham2010-12-041-0/+2
| | | | Originally committed as revision 25873 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Change the argument of memory allocation functions from unsigned int to size_tMichael Niedermayer2010-12-042-10/+19
| | | | | | with the next major bump in libavcodec. Originally committed as revision 25872 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Change the argument of memory allocation functions from unsigned int to size_tMichael Niedermayer2010-12-042-6/+12
| | | | | | with the next major bump in libavutil. Originally committed as revision 25871 to svn://svn.ffmpeg.org/ffmpeg/trunk
* set default subtitle_codec for ass muxerAurelien Jacobs2010-12-041-0/+1
| | | | Originally committed as revision 25870 to svn://svn.ffmpeg.org/ffmpeg/trunk
* cosmetic: alignmentAurelien Jacobs2010-12-041-1/+1
| | | | Originally committed as revision 25869 to svn://svn.ffmpeg.org/ffmpeg/trunk
* use designated initializer in ASS (de)muxerAurelien Jacobs2010-12-042-18/+16
| | | | Originally committed as revision 25868 to svn://svn.ffmpeg.org/ffmpeg/trunk
* add myself as maintainer for ASS and SRTAurelien Jacobs2010-12-041-0/+3
| | | | Originally committed as revision 25867 to svn://svn.ffmpeg.org/ffmpeg/trunk
* g722: Add a trellis encoderMartin Storsjö2010-12-031-0/+198
| | | | | | The structure is largely based on the trellis encoder in adpcm.c. Originally committed as revision 25866 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add myself as maintainer for g722.cMartin Storsjö2010-12-031-0/+1
| | | | Originally committed as revision 25865 to svn://svn.ffmpeg.org/ffmpeg/trunk
OpenPOWER on IntegriCloud