The income/earnings questions don't go by calendar years, they go by "earnings/income in the past 12 months." I think what they are doing is somehow averaging the current survey year's and the previous year's CPI-U-RS (although...not everyone would be urban, so not sure). If you're interviewed in June 2011, then your earnings for the past 12 months are partially from 2010.
Are you working with PUMS? Whenever I work with PUMS multiyear data, I have to use the "adjinc" variable in the Data Dictionary (found here:
www.census.gov/.../documentation.html) to express earnings/income in the most recent year's dollars (e.g., 2015 dollars for the 2011-2015 file).
Here's how I do it in SAS:
*define variable called earnings_2015 for earnings expressed in 2015 dollars;
earnings_2015 = .;
earnings_2015 = pernp * (adjinc/1000000);
Similarly, there's a variable called "adjhsg" for home value, etc.
Hope that helps!