It's a vanilla build that came from the general svn (svn checkout svn://svn.ffmpeg.org/ffmpeg/trunk), and I built it the next day. r22714 is logged as having been committed on 2010-03-28 at 21:34:33 -0400, the build is Mar 29th at 10:53:49.
C:\dap\BT>svn log -r 22714 svn://svn.ffmpeg.org/ffmpeg/trunk
------------------------------------------------------------------------
r22714 | darkshikari | 2010-03-28 21:34:33 -0400 (Sun, 28 Mar 2010) | 4 lines
Update x264 presets in line with latest x264 changes.
Patch by Lou Logan.
------------------------------------------------------------------------
C:\dap\BT>ffmpeg
FFmpeg version SVN-r22714, Copyright (c) 2000-2010 the FFmpeg developers
built on Mar 29 2010 10:53:49 with gcc 4.4.3 (x86.generic.Komisar)
configuration: --prefix=/home/Stephen/ffms2_build --enable-gpl --enable-version3 --enable-postproc --enable-memalign-hack --enable-pthreads --enable-libxvid --disable-encoder=mpeg4 --enable-avisynth --extra-cflags='-I/home/Stephen/ffms2_build/include -march=pentium3' --extra-ldflags=-L/home/Stephen/ffms2_build/lib
libavutil 50.13. 0 / 50.13. 0
libavcodec 52.61. 0 / 52.61. 0
libavformat 52.58. 0 / 52.58. 0
libavdevice 52. 2. 0 / 52. 2. 0
libswscale 0.10. 0 / 0.10. 0
libpostproc 51. 2. 0 / 51. 2. 0
Hyper fast Audio and Video encoder
usage: ffmpeg [options] [[infile options] -i infile]... {[outfile options] outfile}...
Use -h to get full help or, even better, run 'man ffmpeg'
C:\dap\BT>
I can't see anything in the git commit logs about FFV1-related stuff, though (at least, not since 2009). I couldn't really see how to navigate around the ffmpeg-mt gitweb log easily, but as my setup is too old to make using ffmpeg-mt worthwhile I only looked at it yesterday or the day before, and not for that long.
The only log entry I could find from the last few days referring to YV12 (or more precisely, 4:2:0) stuff was this one, committed a couple days after the build I was using. But it seems to be relevant only to ffserver.
------------------------------------------------------------------------
r22751 | rbultje | 2010-03-31 17:02:34 -0400 (Wed, 31 Mar 2010) | 9 lines
Fix FFM-based streaming from ffmpeg to ffserver. The basic problem is that
we'd memset() the codec context to zero, thereby setting audio input to U8
and video to YUV420P. For most video encoders, that actually works, but for
most audio codecs, it doesn't. This patch changes defaults to those set by
avcodec_context_get_defaults() and have ffmpeg figure out the optimal encoding
format itself if not set explicitely (as it does for the non-ffserver-cases
also).