Jai Menon [Fri, 8 Jan 2010 05:09:17 +0000 (05:09 +0000)]
Snow : release buffers allocated using avctx->get_buffer.
Originally committed as revision 21084 to svn://svn.ffmpeg.org/ffmpeg/trunk
Jai Menon [Fri, 8 Jan 2010 05:08:02 +0000 (05:08 +0000)]
Set bits_per_coded_sample in the raw video encoder.
Aside from being the correct thing to do, this also
fixes issue 1299.
Originally committed as revision 21083 to svn://svn.ffmpeg.org/ffmpeg/trunk
Michael Niedermayer [Fri, 8 Jan 2010 04:00:06 +0000 (04:00 +0000)]
Add a few CONFIG_MPEG4_DECODER that should be there.
Originally committed as revision 21082 to svn://svn.ffmpeg.org/ffmpeg/trunk
Art Clarke [Fri, 8 Jan 2010 03:43:48 +0000 (03:43 +0000)]
Improve avformat_version() doxy.
Patch by Art Clarke.
Originally committed as revision 21081 to svn://svn.ffmpeg.org/ffmpeg/trunk
Martin Storsjö [Fri, 8 Jan 2010 00:04:23 +0000 (00:04 +0000)]
Currently, the replacement which is used if inet_aton isn't available,
only works correctly on little-endian. The attached patch makes it endian
independent.
Patch by Martin Storsjö <$firstname()$firstname,st>.
Originally committed as revision 21080 to svn://svn.ffmpeg.org/ffmpeg/trunk
Michael Niedermayer [Thu, 7 Jan 2010 23:53:49 +0000 (23:53 +0000)]
Split the mpeg4 encoder and decoder off h263.c
Originally committed as revision 21079 to svn://svn.ffmpeg.org/ffmpeg/trunk
Ronald S. Bultje [Thu, 7 Jan 2010 23:05:19 +0000 (23:05 +0000)]
handler can be NULL if we did not support this dynamic format (codec).
Fixes issue 1658 (the crasher), although the format itself is obviously
still unsupported.
Originally committed as revision 21078 to svn://svn.ffmpeg.org/ffmpeg/trunk
Stefano Sabatini [Thu, 7 Jan 2010 22:59:22 +0000 (22:59 +0000)]
Make avfilter_formats_unref(AVFilterFormats **ref) handle the case
when *ref is NULL.
Originally committed as revision 21077 to svn://svn.ffmpeg.org/ffmpeg/trunk
Stefano Sabatini [Thu, 7 Jan 2010 22:52:46 +0000 (22:52 +0000)]
Use the @return doxy command, and extend documentation for the return
value of AVFilter.query_formats.
Originally committed as revision 21076 to svn://svn.ffmpeg.org/ffmpeg/trunk
Stefano Sabatini [Thu, 7 Jan 2010 22:51:06 +0000 (22:51 +0000)]
Avoid the use of the modal auxiliary "should" in the
AVFilter.query_formats doxy.
The doxy expresses what a function does, not what it should do.
Originally committed as revision 21075 to svn://svn.ffmpeg.org/ffmpeg/trunk
Thilo Borgmann [Thu, 7 Jan 2010 22:48:58 +0000 (22:48 +0000)]
Add multi-channel correlation support for ALS.
Originally committed as revision 21074 to svn://svn.ffmpeg.org/ffmpeg/trunk
Stefano Sabatini [Thu, 7 Jan 2010 22:44:32 +0000 (22:44 +0000)]
Fix doxy, use third person.
Originally committed as revision 21073 to svn://svn.ffmpeg.org/ffmpeg/trunk
Ronald S. Bultje [Thu, 7 Jan 2010 22:44:03 +0000 (22:44 +0000)]
Add correct log context to av_log() calls in parse_rtpmap().
Originally committed as revision 21072 to svn://svn.ffmpeg.org/ffmpeg/trunk
Ronald S. Bultje [Thu, 7 Jan 2010 22:41:14 +0000 (22:41 +0000)]
Re-indent to more closely follow general coding standards used in other
parts of FFmpeg. Also change a starting condition; while (condition) {
... bla = bla->next; } loop into a proper for() loop.
Originally committed as revision 21071 to svn://svn.ffmpeg.org/ffmpeg/trunk
Carl Eugen Hoyos [Thu, 7 Jan 2010 22:33:26 +0000 (22:33 +0000)]
Fix red/blue swap for 4xa files.
Originally committed as revision 21070 to svn://svn.ffmpeg.org/ffmpeg/trunk
Thilo Borgmann [Thu, 7 Jan 2010 22:23:28 +0000 (22:23 +0000)]
Optimize short-term prediction by reducing index arithmetic.
Originally committed as revision 21069 to svn://svn.ffmpeg.org/ffmpeg/trunk
Ramiro Polla [Thu, 7 Jan 2010 19:25:03 +0000 (19:25 +0000)]
Silence calls to git in version.sh.
Originally committed as revision 21068 to svn://svn.ffmpeg.org/ffmpeg/trunk
Ramiro Polla [Thu, 7 Jan 2010 19:23:50 +0000 (19:23 +0000)]
Check for VERSION in source dir.
Originally committed as revision 21067 to svn://svn.ffmpeg.org/ffmpeg/trunk
Stefano Sabatini [Thu, 7 Jan 2010 19:11:03 +0000 (19:11 +0000)]
Add an entry for the sws_isSupportedInput() and
sws_isSupportedOutput() functions addition.
Originally committed as revision 21066 to svn://svn.ffmpeg.org/ffmpeg/trunk
Stefano Sabatini [Thu, 7 Jan 2010 19:07:47 +0000 (19:07 +0000)]
Implement sws_isSupportedInput() and sws_isSupportedOutput().
Originally committed as revision 30236 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
Ramiro Polla [Thu, 7 Jan 2010 17:54:17 +0000 (17:54 +0000)]
Check for snapshot_version in source dir.
Originally committed as revision 21065 to svn://svn.ffmpeg.org/ffmpeg/trunk
Michael Niedermayer [Thu, 7 Jan 2010 15:46:45 +0000 (15:46 +0000)]
Add some const qualifiers.
Originally committed as revision 21064 to svn://svn.ffmpeg.org/ffmpeg/trunk
Michael Niedermayer [Thu, 7 Jan 2010 15:43:49 +0000 (15:43 +0000)]
Document decide_ac_pred() and restore_ac_coeffs().
Originally committed as revision 21063 to svn://svn.ffmpeg.org/ffmpeg/trunk
Michael Niedermayer [Thu, 7 Jan 2010 15:31:54 +0000 (15:31 +0000)]
Move restore_ac_coeffs() call into decode_ac_pred().
This makes decode_ac_pred() easier to understand.
Originally committed as revision 21062 to svn://svn.ffmpeg.org/ffmpeg/trunk
Michael Niedermayer [Thu, 7 Jan 2010 15:24:50 +0000 (15:24 +0000)]
Move restore_ac_coeffs() up so its declared before its use.
Originally committed as revision 21061 to svn://svn.ffmpeg.org/ffmpeg/trunk
Michael Niedermayer [Thu, 7 Jan 2010 15:12:31 +0000 (15:12 +0000)]
More doxy
Originally committed as revision 21060 to svn://svn.ffmpeg.org/ffmpeg/trunk
Michael Niedermayer [Thu, 7 Jan 2010 14:56:40 +0000 (14:56 +0000)]
Document ff_h263_show_pict_info().
Originally committed as revision 21059 to svn://svn.ffmpeg.org/ffmpeg/trunk
Michael Niedermayer [Thu, 7 Jan 2010 14:55:11 +0000 (14:55 +0000)]
Factorize if() surrounding every ff_h263_show_pict_info() call.
Originally committed as revision 21058 to svn://svn.ffmpeg.org/ffmpeg/trunk
Martin Storsjö [Thu, 7 Jan 2010 08:24:44 +0000 (08:24 +0000)]
Always set the destination address even if no port was found.
Patch by Martin Storsjo (martin AT martin DOT st)
Originally committed as revision 21057 to svn://svn.ffmpeg.org/ffmpeg/trunk
Martin Storsjö [Thu, 7 Jan 2010 08:11:56 +0000 (08:11 +0000)]
Check the URL used for the SDP destination.
Patch by Martin Storsjo (martin AT martin DOT st)
Originally committed as revision 21056 to svn://svn.ffmpeg.org/ffmpeg/trunk
Zuxy Meng [Thu, 7 Jan 2010 07:13:18 +0000 (07:13 +0000)]
Remove const to avoid a bunch of GCC warnings against discarded qualifiers and
incompatible pointer type.
Originally committed as revision 30234 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
Michael Niedermayer [Thu, 7 Jan 2010 06:32:34 +0000 (06:32 +0000)]
2 more if(CONFIG_*_DECODER)
Originally committed as revision 21055 to svn://svn.ffmpeg.org/ffmpeg/trunk
Michael Niedermayer [Thu, 7 Jan 2010 06:25:41 +0000 (06:25 +0000)]
Split out intel H263 decoder.
Originally committed as revision 21054 to svn://svn.ffmpeg.org/ffmpeg/trunk
Michael Niedermayer [Thu, 7 Jan 2010 06:20:57 +0000 (06:20 +0000)]
flv.h should ideally be included in flvdec.c
Originally committed as revision 21053 to svn://svn.ffmpeg.org/ffmpeg/trunk
Michael Niedermayer [Thu, 7 Jan 2010 05:41:49 +0000 (05:41 +0000)]
Move forgotton "AVCodec flv_encoder" over to flvenc.c.
Originally committed as revision 21052 to svn://svn.ffmpeg.org/ffmpeg/trunk
Michael Niedermayer [Thu, 7 Jan 2010 05:36:45 +0000 (05:36 +0000)]
Split flv decoding out.
Originally committed as revision 21051 to svn://svn.ffmpeg.org/ffmpeg/trunk
Michael Niedermayer [Thu, 7 Jan 2010 04:42:39 +0000 (04:42 +0000)]
Split out flv encoding.
Originally committed as revision 21050 to svn://svn.ffmpeg.org/ffmpeg/trunk
Michael Niedermayer [Thu, 7 Jan 2010 04:01:19 +0000 (04:01 +0000)]
Document aspect_to_info().
Originally committed as revision 21049 to svn://svn.ffmpeg.org/ffmpeg/trunk
Michael Niedermayer [Thu, 7 Jan 2010 03:58:12 +0000 (03:58 +0000)]
Cleanup aspect_to_info().
Originally committed as revision 21048 to svn://svn.ffmpeg.org/ffmpeg/trunk
Michael Niedermayer [Thu, 7 Jan 2010 03:54:10 +0000 (03:54 +0000)]
Document several more things.
Originally committed as revision 21047 to svn://svn.ffmpeg.org/ffmpeg/trunk
Michael Niedermayer [Thu, 7 Jan 2010 03:40:41 +0000 (03:40 +0000)]
Document *VLC_BITS.
Originally committed as revision 21046 to svn://svn.ffmpeg.org/ffmpeg/trunk
Michael Niedermayer [Thu, 7 Jan 2010 03:36:46 +0000 (03:36 +0000)]
Simplify h263_get_picture_format().
Originally committed as revision 21045 to svn://svn.ffmpeg.org/ffmpeg/trunk
Michael Niedermayer [Thu, 7 Jan 2010 03:34:30 +0000 (03:34 +0000)]
Mark h263_get_picture_format() av_const to indicate that it has no funny
sideeffects and reads no global memory.
Originally committed as revision 21044 to svn://svn.ffmpeg.org/ffmpeg/trunk
Michael Niedermayer [Thu, 7 Jan 2010 03:30:45 +0000 (03:30 +0000)]
Document h263_get_picture_format().
Originally committed as revision 21043 to svn://svn.ffmpeg.org/ffmpeg/trunk
Michael Niedermayer [Thu, 7 Jan 2010 01:15:16 +0000 (01:15 +0000)]
Fix stream copy & transcoding one stream at the same time.
Fixes issue1660.
Originally committed as revision 21042 to svn://svn.ffmpeg.org/ffmpeg/trunk
Michael Niedermayer [Thu, 7 Jan 2010 00:50:34 +0000 (00:50 +0000)]
Correct indention.
Originally committed as revision 21041 to svn://svn.ffmpeg.org/ffmpeg/trunk
Michael Niedermayer [Thu, 7 Jan 2010 00:47:23 +0000 (00:47 +0000)]
Move the definitions of data_buf and data_size closer to where they are used.
Originally committed as revision 21040 to svn://svn.ffmpeg.org/ffmpeg/trunk
Carl Eugen Hoyos [Wed, 6 Jan 2010 23:15:33 +0000 (23:15 +0000)]
100l: Fix compilation after r21037.
Originally committed as revision 21039 to svn://svn.ffmpeg.org/ffmpeg/trunk
Michael Niedermayer [Wed, 6 Jan 2010 22:40:52 +0000 (22:40 +0000)]
Stop the approximation in bessel() once it does no longer improve.
This is faster.
Originally committed as revision 21038 to svn://svn.ffmpeg.org/ffmpeg/trunk
Daniel Verkamp [Wed, 6 Jan 2010 21:51:20 +0000 (21:51 +0000)]
Handle more ADPCM codecs in av_get_bits_per_sample().
This removes some special-case code from riff.c.
CODEC_ID_ADPCM_G726 is still handled in riff.c as before because it is
not guaranteed to be fixed 4 bits per sample.
Originally committed as revision 21037 to svn://svn.ffmpeg.org/ffmpeg/trunk
Stefano Sabatini [Wed, 6 Jan 2010 16:22:15 +0000 (16:22 +0000)]
Add an entry for the avfilter_add_colorspace() API change.
Originally committed as revision 21036 to svn://svn.ffmpeg.org/ffmpeg/trunk
Stefano Sabatini [Wed, 6 Jan 2010 16:19:13 +0000 (16:19 +0000)]
Change avfilter_add_colorspace() to make it accept **avff rather than
*avff, so that an AVFilterFormats struct is created and returned by
the function if *avff is NULL.
Make the function use more convenient.
Originally committed as revision 21035 to svn://svn.ffmpeg.org/ffmpeg/trunk
John Van Sickle [Wed, 6 Jan 2010 13:49:31 +0000 (13:49 +0000)]
Fix entry on concatenating multiple yuv4mpegpipe streams.
patch by John Van Sickle, john.vansickle gmail com
Originally committed as revision 21033 to svn://svn.ffmpeg.org/ffmpeg/trunk
Ben Littler [Tue, 5 Jan 2010 20:14:50 +0000 (20:14 +0000)]
add another mjpeg fourcc to riff.c list
Originally committed as revision 21032 to svn://svn.ffmpeg.org/ffmpeg/trunk
Francesco Lavra [Tue, 5 Jan 2010 16:25:41 +0000 (16:25 +0000)]
Use correct context for av_log(), should prevent a crash for malformed files.
Patch by Francesco Lavra (francescolavra at interfree dot it).
Originally committed as revision 21031 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diego Biurrun [Tue, 5 Jan 2010 10:18:01 +0000 (10:18 +0000)]
Add a few explanatory comments to cornercase workarounds.
Originally committed as revision 21030 to svn://svn.ffmpeg.org/ffmpeg/trunk
Thilo Borgmann [Tue, 5 Jan 2010 01:16:02 +0000 (01:16 +0000)]
Replace array operator [] with direct access via pointer.
Solves issue 1657.
Originally committed as revision 21029 to svn://svn.ffmpeg.org/ffmpeg/trunk
Carl Eugen Hoyos [Tue, 5 Jan 2010 01:14:38 +0000 (01:14 +0000)]
Cosmetics: Fix indentation and comment after r21027.
Originally committed as revision 21028 to svn://svn.ffmpeg.org/ffmpeg/trunk
Carl Eugen Hoyos [Tue, 5 Jan 2010 01:11:45 +0000 (01:11 +0000)]
Support decoding raw 2bpp in mov, fixes issue 1528.
Originally committed as revision 21027 to svn://svn.ffmpeg.org/ffmpeg/trunk
Carl Eugen Hoyos [Tue, 5 Jan 2010 00:41:29 +0000 (00:41 +0000)]
Improve readability of 4bpp raw decoder and prepare for supporting 2bpp.
Originally committed as revision 21026 to svn://svn.ffmpeg.org/ffmpeg/trunk
Baptiste Coudurier [Mon, 4 Jan 2010 22:59:43 +0000 (22:59 +0000)]
cosmetics, remove useless parentheses, add space
Originally committed as revision 21025 to svn://svn.ffmpeg.org/ffmpeg/trunk
Baptiste Coudurier [Mon, 4 Jan 2010 22:58:19 +0000 (22:58 +0000)]
simplify error handling in mov_read_default
Originally committed as revision 21024 to svn://svn.ffmpeg.org/ffmpeg/trunk
Baptiste Coudurier [Mon, 4 Jan 2010 22:51:38 +0000 (22:51 +0000)]
remove no more needed MOVAtom.offset field
Originally committed as revision 21023 to svn://svn.ffmpeg.org/ffmpeg/trunk
Baptiste Coudurier [Mon, 4 Jan 2010 22:48:27 +0000 (22:48 +0000)]
remove useless code skipping data at end of hdlr atom, already done in mov_read_default
Originally committed as revision 21022 to svn://svn.ffmpeg.org/ffmpeg/trunk
David Conrad [Mon, 4 Jan 2010 22:29:53 +0000 (22:29 +0000)]
Register myself as libdirac libschroedinger and libtheora maintainer
Originally committed as revision 21021 to svn://svn.ffmpeg.org/ffmpeg/trunk
Ronald S. Bultje [Mon, 4 Jan 2010 19:55:43 +0000 (19:55 +0000)]
Remove forward declarations.
Originally committed as revision 21020 to svn://svn.ffmpeg.org/ffmpeg/trunk
Vitor Sessak [Mon, 4 Jan 2010 19:26:08 +0000 (19:26 +0000)]
Reindent after last commit
Originally committed as revision 21019 to svn://svn.ffmpeg.org/ffmpeg/trunk
Vitor Sessak [Mon, 4 Jan 2010 19:25:44 +0000 (19:25 +0000)]
Add missing "static" qualifier
Originally committed as revision 21018 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diego Biurrun [Mon, 4 Jan 2010 17:55:52 +0000 (17:55 +0000)]
Mark http_log() as static; it is only used in this file.
Originally committed as revision 21017 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diego Biurrun [Mon, 4 Jan 2010 16:29:19 +0000 (16:29 +0000)]
Fix VDPAU check to avoid printing spurious messages to the console.
Originally committed as revision 21016 to svn://svn.ffmpeg.org/ffmpeg/trunk
Ronald S. Bultje [Mon, 4 Jan 2010 15:52:26 +0000 (15:52 +0000)]
Add myself as HTTP maintainer.
Originally committed as revision 21015 to svn://svn.ffmpeg.org/ffmpeg/trunk
Jai Menon [Mon, 4 Jan 2010 15:06:28 +0000 (15:06 +0000)]
Do not print libvdpau upgrade advice on platforms without vdpau
headers installed.
Originally committed as revision 21014 to svn://svn.ffmpeg.org/ffmpeg/trunk
avcoder [Mon, 4 Jan 2010 13:21:18 +0000 (13:21 +0000)]
The H.263 wrong_run table is only for encoding; only enable it in such cases.
patch by avcoder, ffmpeg gmail com
Originally committed as revision 21013 to svn://svn.ffmpeg.org/ffmpeg/trunk
Gwenole Beauchesne [Mon, 4 Jan 2010 09:23:24 +0000 (09:23 +0000)]
VAAPI: fix WMV3 decoding of videos with an odd number of macroblocks per line.
Originally committed as revision 21012 to svn://svn.ffmpeg.org/ffmpeg/trunk
Gwenole Beauchesne [Mon, 4 Jan 2010 09:19:32 +0000 (09:19 +0000)]
Fix XvMC. XvMCCreateBlocks() may not allocate 16-byte aligned blocks,
so we can't use SSE-optimized routines.
Originally committed as revision 21011 to svn://svn.ffmpeg.org/ffmpeg/trunk
Mike Melanson [Mon, 4 Jan 2010 02:52:40 +0000 (02:52 +0000)]
Add support for these widely-used iTunes metadata fields: Album Artist,
Grouping, and Lyrics.
Originally committed as revision 21010 to svn://svn.ffmpeg.org/ffmpeg/trunk
Stefano Sabatini [Mon, 4 Jan 2010 00:08:11 +0000 (00:08 +0000)]
Make avfilter_all_colorspaces() add to the returned list of pixel
formats only the non-HW-accelerated formats, for which there is no
sense in filtering.
Originally committed as revision 21009 to svn://svn.ffmpeg.org/ffmpeg/trunk
Stefano Sabatini [Sun, 3 Jan 2010 22:29:18 +0000 (22:29 +0000)]
Add an entry for the avfilter_add_colorspace() API addition.
Originally committed as revision 21008 to svn://svn.ffmpeg.org/ffmpeg/trunk
Stefano Sabatini [Sun, 3 Jan 2010 22:26:59 +0000 (22:26 +0000)]
Implement avfilter_add_colorspace().
Originally committed as revision 21007 to svn://svn.ffmpeg.org/ffmpeg/trunk
Stefano Sabatini [Sun, 3 Jan 2010 21:21:41 +0000 (21:21 +0000)]
Document avcodec_pix_fmt_to_codec_tag().
Originally committed as revision 21006 to svn://svn.ffmpeg.org/ffmpeg/trunk
Stefano Sabatini [Sun, 3 Jan 2010 15:20:07 +0000 (15:20 +0000)]
Prefer enum PixelFormat over int for the type of the format parameter
of getSubSampleFactors().
Originally committed as revision 30184 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
Stefano Sabatini [Sun, 3 Jan 2010 14:35:20 +0000 (14:35 +0000)]
Prefer "*FUNC_NAME(" over "* FUNC_NAME(" for the
swscale_configuration() and swscale_license() functions, consistent
with the rest of FFmpeg.
Originally committed as revision 30180 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
Stefano Sabatini [Sun, 3 Jan 2010 14:31:25 +0000 (14:31 +0000)]
Prefer "*FUNC_NAME(" over "* FUNC_NAME(" for XXX_configuration() and
XXX_license() functions, consistent with the rest of FFmpeg.
Originally committed as revision 21005 to svn://svn.ffmpeg.org/ffmpeg/trunk
Reinhard Tartler [Sun, 3 Jan 2010 10:43:36 +0000 (10:43 +0000)]
Define device_try_init() as static in libavdevice/v4l2.c.
Patch by Reinhard Tartler (siretart AT tauware DOT de).
Originally committed as revision 21004 to svn://svn.ffmpeg.org/ffmpeg/trunk
Stefano Sabatini [Sun, 3 Jan 2010 00:22:49 +0000 (00:22 +0000)]
Simplify usePal() macro, make it use av_pix_fmt_descriptors.
Originally committed as revision 30172 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
Stefano Sabatini [Sun, 3 Jan 2010 00:09:24 +0000 (00:09 +0000)]
Simplify getSubSampleFactors(), make it use the values provided by
av_pix_fmt_descriptors().
Originally committed as revision 30171 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
Reimar Döffinger [Sat, 2 Jan 2010 17:48:08 +0000 (17:48 +0000)]
Reduce number of ASM constraints for ff_lpc_compute_autocorr_sse2 since it
causes no significant speed difference and can avoid compilation issues with
--enable-pic.
Originally committed as revision 21003 to svn://svn.ffmpeg.org/ffmpeg/trunk
Vitor Sessak [Sat, 2 Jan 2010 12:29:00 +0000 (12:29 +0000)]
10l, my last commit (r21001) broke regression tests.
FATE tests might need updating too.
Originally committed as revision 21002 to svn://svn.ffmpeg.org/ffmpeg/trunk
Vitor Sessak [Sat, 2 Jan 2010 12:15:09 +0000 (12:15 +0000)]
Small ELBG optimization: use last pixel as a initial guess for the codebook
entry.
Originally committed as revision 21001 to svn://svn.ffmpeg.org/ffmpeg/trunk
Stefano Sabatini [Fri, 1 Jan 2010 23:56:09 +0000 (23:56 +0000)]
Use av_match_ext() in place of the deprecated match_ext() function.
Originally committed as revision 21000 to svn://svn.ffmpeg.org/ffmpeg/trunk
Stefano Sabatini [Fri, 1 Jan 2010 23:53:02 +0000 (23:53 +0000)]
Add an entry for the av_match_ext() addition.
Originally committed as revision 20999 to svn://svn.ffmpeg.org/ffmpeg/trunk
Stefano Sabatini [Fri, 1 Jan 2010 23:50:10 +0000 (23:50 +0000)]
Deprecate match_ext() in favor of av_match_ext(), and mark it for
deletion at the next major bump.
Originally committed as revision 20998 to svn://svn.ffmpeg.org/ffmpeg/trunk
Michael Niedermayer [Fri, 1 Jan 2010 21:32:48 +0000 (21:32 +0000)]
Adjust threshold for xvid packed b frame detection.
Also add xvid_build check.
If you note any packed bitstream regression, check this commit first and report it.
Fixes issue1652
Originally committed as revision 20997 to svn://svn.ffmpeg.org/ffmpeg/trunk
Michael Niedermayer [Fri, 1 Jan 2010 21:07:52 +0000 (21:07 +0000)]
It appears s->bitstream_buffer_size has to be 0 at the end so rather use assert.
Originally committed as revision 20996 to svn://svn.ffmpeg.org/ffmpeg/trunk
Stefano Sabatini [Fri, 1 Jan 2010 15:07:35 +0000 (15:07 +0000)]
Update this_year value.
Originally committed as revision 20995 to svn://svn.ffmpeg.org/ffmpeg/trunk
Stefano Sabatini [Fri, 1 Jan 2010 12:58:03 +0000 (12:58 +0000)]
Use av_guess_format() in place of the deprecated guess_format().
Originally committed as revision 20994 to svn://svn.ffmpeg.org/ffmpeg/trunk
Stefano Sabatini [Fri, 1 Jan 2010 12:52:20 +0000 (12:52 +0000)]
Reindent.
Originally committed as revision 20993 to svn://svn.ffmpeg.org/ffmpeg/trunk
Stefano Sabatini [Fri, 1 Jan 2010 12:50:23 +0000 (12:50 +0000)]
Add an entry for the av_guess_format() addition.
Originally committed as revision 20992 to svn://svn.ffmpeg.org/ffmpeg/trunk
Stefano Sabatini [Fri, 1 Jan 2010 12:46:24 +0000 (12:46 +0000)]
Deprecate guess_format() in favor of av_guess_format().
Originally committed as revision 20991 to svn://svn.ffmpeg.org/ffmpeg/trunk
Stefano Sabatini [Fri, 1 Jan 2010 12:29:22 +0000 (12:29 +0000)]
Fix typo.
Originally committed as revision 20990 to svn://svn.ffmpeg.org/ffmpeg/trunk