summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* rtsp: Store the Content-Base header value straight to the targetMartin Storsjö2011-01-023-9/+3
| | | | | | | This avoids having a large temporary buffer in the struct used for storing the rtsp reply headers. Originally committed as revision 26192 to svn://svn.ffmpeg.org/ffmpeg/trunk
* rtsp: Pass the method name to ff_rtsp_parse_lineMartin Storsjö2011-01-023-4/+4
| | | | Originally committed as revision 26191 to svn://svn.ffmpeg.org/ffmpeg/trunk
* rtsp: Pass RTSPState to ff_rtsp_parse_line, instead of HTTPAuthStateMartin Storsjö2011-01-022-7/+7
| | | | | | | | This allows ff_rtsp_parse_line to do more changes directly in RTSPState when parsing the reply, instead of having to store large amounts of temporary data in RTSPMessageHeader. Originally committed as revision 26190 to svn://svn.ffmpeg.org/ffmpeg/trunk
* rtsp: Add a method parameter to ff_rtsp_read_replyMartin Storsjö2011-01-024-6/+8
| | | | Originally committed as revision 26189 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix a floating point exception for invalid framerate, fixes issue 2470.Daniel Kang2011-01-021-1/+1
| | | | | | Patch by Daniel Kang, daniel.d.kang at gmail Originally committed as revision 26188 to svn://svn.ffmpeg.org/ffmpeg/trunk
* rtpdec: Emit timestamps for packets before the first RTCP packet, tooMartin Storsjö2011-01-014-5/+29
| | | | | | | | Emitted timestamps in each stream start from 0, for the first received RTP packet. Once an RTCP packet is received, that one is used for sync, emitting timestamps that fit seamlessly into the earlier ones. Originally committed as revision 26187 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Recognize FFMPEG_FORCE_NOCOLOR environment variable on Win32Daniel Verkamp2011-01-011-1/+1
| | | | | | Fixes issue 2461 Originally committed as revision 26186 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Use AVSampleFormat instead of the deprecated SampleFormat.Reimar Döffinger2011-01-011-1/+1
| | | | Originally committed as revision 26185 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Update current year to 2011. Happy New Year!Justin Ruggles2011-01-011-1/+1
| | | | Originally committed as revision 26184 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix typos.Stefano Sabatini2011-01-011-3/+3
| | | | Originally committed as revision 26183 to svn://svn.ffmpeg.org/ffmpeg/trunk
* move ff_get_bmp_header under CONFIG_DEMUXERS blockPeter Ross2011-01-011-17/+17
| | | | Originally committed as revision 26182 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Skip the bit allocation search if previous and current SNR offsets are theJustin Ruggles2010-12-311-0/+7
| | | | | | | | maximum value of 1023. This speeds up overall encoding depending on the content and bitrate. The most improvement is with high bitrates and/or low complexity content. Originally committed as revision 26181 to svn://svn.ffmpeg.org/ffmpeg/trunk
* 10l: Fix mistake in r26044. Check increment bounds using actual incrementJustin Ruggles2010-12-311-1/+1
| | | | | | | instead of 64. This will change output in some cases, but it happens to not affect the AC-3 regression tests. Originally committed as revision 26180 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Change planar_samples from int16_t to SampleType.Justin Ruggles2010-12-311-1/+1
| | | | | | This one was missed in r26174. Originally committed as revision 26179 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add .pix_fmts to LCL encoderJason Garrett-Glaser2010-12-311-10/+3
| | | | | | Now ffmpeg should automatically convert to BGR instead of erroring out. Originally committed as revision 26178 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix invalid reads in valgrind fate, patch by Daniel Kang <daniel dot d dotDaniel Kang2010-12-311-8/+8
| | | | | | kang at gmail com>, as part of Google's GCI 2010. Originally committed as revision 26177 to svn://svn.ffmpeg.org/ffmpeg/trunk
* free subtitle_header before overwriting it to avoid memleakAurelien Jacobs2010-12-311-0/+5
| | | | Originally committed as revision 26176 to svn://svn.ffmpeg.org/ffmpeg/trunk
* use avsubtitle_free() instead of re-implementing it partially (fix a memleak)Aurelien Jacobs2010-12-311-9/+1
| | | | Originally committed as revision 26175 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add typedefs and a macro that will allow sharing of functions between theJustin Ruggles2010-12-301-10/+15
| | | | | | fixed-point and floating-point AC-3 encoders. Originally committed as revision 26174 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Move the list of supported channel layouts to a separate table.Justin Ruggles2010-12-301-20/+27
| | | | Originally committed as revision 26173 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add a window field to AC3MDCTContext and use it as an input to apply_window()Justin Ruggles2010-12-301-1/+4
| | | | | | instead of using the ff_ac3_window[] table directly. Originally committed as revision 26172 to svn://svn.ffmpeg.org/ffmpeg/trunk
* cosmetics: alignment, line wrap, and spacingJustin Ruggles2010-12-301-29/+19
| | | | Originally committed as revision 26171 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove avctx from AC3MDCTContext and just pass it to mdct_init() instead.Justin Ruggles2010-12-301-12/+10
| | | | Originally committed as revision 26170 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Make exponent_group_tab[] static.Justin Ruggles2010-12-301-1/+1
| | | | Originally committed as revision 26169 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix valgrind invalid read on top MB rows with CODEC_FLAG_EMU_EDGE set.Ronald S. Bultje2010-12-301-1/+2
| | | | Originally committed as revision 26168 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Set blkalign to maximum framesize to allow playback on WMP (see issue 2455 ↵Carl Eugen Hoyos2010-12-301-0/+4
| | | | | | and issue 2446). Originally committed as revision 26167 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Use %td instead of %PRIdPTR. The argument has type ptrdiff_t.Justin Ruggles2010-12-301-1/+1
| | | | Originally committed as revision 26166 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add audio flag to libvorbis AVOption.Justin Ruggles2010-12-301-1/+1
| | | | Originally committed as revision 26165 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Use %"PRIdPTR" instead of %d to silence gcc warning about type mismatch.Justin Ruggles2010-12-301-1/+1
| | | | Originally committed as revision 26164 to svn://svn.ffmpeg.org/ffmpeg/trunk
* flac_parser: loop append buffer when the default size is not enough to getMichael Chinen2010-12-301-14/+27
| | | | | | | the desired number of frames. Patch by Michael Chinen [mchinen at gmail] Originally committed as revision 26163 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Port pred8x8l_down_left_mmxext (H.264 intra prediction) from x264 (authors:Daniel Kang2010-12-292-0/+111
| | | | | | | Jason, Loren, Holger) to FFmpeg. Patch by Daniel Kang <daniel dot d dot kang at gmail com>, as part of Google's GCI 2010. Originally committed as revision 26162 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Cosmetics: Re-indent after last commit.Carl Eugen Hoyos2010-12-291-4/+4
| | | | Originally committed as revision 26161 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Do not add the preamble if the DTS stream is already padded, like DTS inAnssi Hannula2010-12-291-1/+12
| | | | | | | | | wav. In that case, DTS can be transmitted through S/PDIF without the IEC 61937 headers. Patch by Anssi Hannula, anssi d hannula a iki d fi Originally committed as revision 26160 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Port pred4x4_down_right_mmxext (H.264 intra prediction) from x264 (authors:Daniel Kang2010-12-292-0/+31
| | | | | | | Jason, Loren, Holger) to FFmpeg. Patch by Daniel Kang <daniel dot d dot kang at gmail com>, as part of Google's GCI 2010. Originally committed as revision 26159 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Port pred4x4_vertical_right_mmxext (H.264 intra prediction) from x264 (authors:Daniel Kang2010-12-292-0/+33
| | | | | | | Jason, Loren, Holger) to FFmpeg. Patch by Daniel Kang <daniel dot d dot kang at gmail com>, as part of Google's GCI 2010. Originally committed as revision 26158 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Port pred4x4_horizontal_down_mmxext (H.264 intra prediction) from x264Daniel Kang2010-12-292-0/+38
| | | | | | | (authors:Jason, Loren, Holger) to FFmpeg. Patch by Daniel Kang <daniel dot d dot kang at gmail com>, as part of Google's GCI 2010. Originally committed as revision 26157 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Port pred4x4_horizontal_up_mmxext (H.264 intra prediction) from x264 (authors:Daniel Kang2010-12-292-0/+37
| | | | | | | Jason, Loren, Holger) to FFmpeg. Patch by Daniel Kang <daniel dot d dot kang at gmail com>, as part of Google's GCI 2010. Originally committed as revision 26156 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Port pred4x4_vertical_left_mmxext (H.264 intra prediction) from x264 (authors:Daniel Kang2010-12-292-0/+28
| | | | | | | Jason, Loren, Holger) to FFmpeg. Patch by Daniel Kang <daniel dot d dot kang at gmail com>, as part of Google's GCI 2010. Originally committed as revision 26155 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Merge a few superfluous CONFIG_GPL checks.Ronald S. Bultje2010-12-291-20/+10
| | | | Originally committed as revision 26154 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Whitespace cosmetics.Ronald S. Bultje2010-12-291-3/+3
| | | | Originally committed as revision 26153 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Whitespace cosmetics.Ronald S. Bultje2010-12-291-2/+2
| | | | Originally committed as revision 26152 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Port pred8x8l_horizontal_down_sse2/ssse3 (H.264 intra prediction) from x264Daniel Kang2010-12-292-0/+135
| | | | | | | (authors: Jason, Loren, Holger) to FFmpeg. Patch by Daniel Kang <daniel dot d dot kang at gmail com>, as part of Google's GCI 2010. Originally committed as revision 26151 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Port pred8x8l_horizontal_down_mmxext (H.264 intra prediction) from x264Daniel Kang2010-12-292-0/+123
| | | | | | | (authors: Jason, Loren, Holger) to FFmpeg. Patch by Daniel Kang <daniel dot d dot kang at gmail com>, as part of Google's GCI 2010. Originally committed as revision 26150 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Port pred8x8l_horizontal_up_mmxext/ssse3 (H.264 intra prediction) from x264Daniel Kang2010-12-292-0/+99
| | | | | | | (authors: Jason, Loren, Holger) to FFmpeg. Patch by Daniel Kang <daniel dot d dot kang at gmail com>, as part of Google's GCI 2010. Originally committed as revision 26149 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Port pred8x8l_vertical_left_sse2/ssse3 (H.264 intra prediction) from x264Daniel Kang2010-12-292-0/+96
| | | | | | | (authors: Jason, Loren, Holger) to FFmpeg. Patch by Daniel Kang <daniel dot d dot kang at gmail com>, as part of Google's GCI 2010. Originally committed as revision 26148 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Port pred8x8l_vertical_right_sse2/ssse3 (H.264 intra prediction) from x264Daniel Kang2010-12-292-0/+120
| | | | | | | (authors: Jason, Loren, Holger) to FFmpeg. Patch by Daniel Kang <daniel dot d dot kang at gmail com>, as part of Google's GCI 2010. Originally committed as revision 26147 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Port pred8x8l_vertical_right_mmxext (H.264 intra prediction) from x264Daniel Kang2010-12-292-0/+115
| | | | | | | (authors: Jason, Loren, Holger) to FFmpeg. Patch by Daniel Kang <daniel dot d dot kang at gmail com>, as part of Google's GCI 2010. Originally committed as revision 26146 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Port pred8x8l_down_right_sse2/ssse3 (H.264 intra prediction) from x264Daniel Kang2010-12-292-0/+121
| | | | | | | (authors: Jason, Loren, Holger) to FFmpeg. Patch by Daniel Kang <daniel dot d dot kang at gmail com>, as part of Google's GCI 2010. Originally committed as revision 26145 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Change the default dB-per-bit code from 2 to 3.Justin Ruggles2010-12-294-20/+19
| | | | | | | | | | | | This gives slightly better quality in PEAQ tests. Code 3 gives a dBpb value of 2816 = -132dB (128 psd units = -6dB), which corresponds to 22 bits. Since the exponents have an offset applied, the 16-bit source looks like 24-bit source to the bit allocation routine. So using dBpb code=3 is a closer match to the exponent range. Regression test refs updated for acodec-ac3, lavf-rm, and seek-ac3_rm. Originally committed as revision 26144 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Port pred8x8l_down_right_mmxext (H.264 intra prediction) from x264 (authors:Daniel Kang2010-12-292-0/+140
| | | | | | | Jason, Loren, Holger) to FFmpeg. Patch by Daniel Kang <daniel dot d dot kang at gmail com>, as part of Google's GCI 2010. Originally committed as revision 26143 to svn://svn.ffmpeg.org/ffmpeg/trunk
OpenPOWER on IntegriCloud