diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2010-01-12 20:59:00 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2010-01-12 20:59:00 +0000 |
commit | ea6f00c448beb212c80ebc7d4555a8aa7160fdb9 (patch) | |
tree | 5902e0f46b8d725649d22f0fa0064cfcbf8da1d0 /libavcodec/Makefile | |
parent | 099809d19b3fd0fb7118eb7a1749581a541c1e33 (diff) | |
download | ffmpeg-ea6f00c448beb212c80ebc7d4555a8aa7160fdb9.tar.gz |
Split all the reference picture handling off h264.c.
Originally committed as revision 21172 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/Makefile')
-rw-r--r-- | libavcodec/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/Makefile b/libavcodec/Makefile index 823f28d37b..1a51912bbb 100644 --- a/libavcodec/Makefile +++ b/libavcodec/Makefile @@ -132,7 +132,7 @@ OBJS-$(CONFIG_H263_ENCODER) += mpegvideo_enc.o mpeg4video.o mpeg4vide ratecontrol.o h263.o ituh263enc.o flvenc.o mpeg12data.o \ mpegvideo.o error_resilience.o OBJS-$(CONFIG_H264_DECODER) += h264.o h264idct.o h264pred.o h264_loopfilter.o h264_direct.o cabac.o \ - h264_sei.o h264_ps.o\ + h264_sei.o h264_ps.o h264_refs.o\ mpegvideo.o error_resilience.o OBJS-$(CONFIG_H264_ENCODER) += h264enc.o h264dspenc.o OBJS-$(CONFIG_H264_VAAPI_HWACCEL) += vaapi_h264.o @@ -283,7 +283,7 @@ OBJS-$(CONFIG_SVQ1_ENCODER) += svq1enc.o svq1.o \ motion_est.o h263.o \ mpegvideo.o error_resilience.o OBJS-$(CONFIG_SVQ3_DECODER) += h264.o svq3.o h264idct.o h264pred.o h264_loopfilter.o h264_direct.o \ - h264_sei.o h264_ps.o\ + h264_sei.o h264_ps.o h264_refs.o\ cabac.o \ mpegvideo.o error_resilience.o \ svq1dec.o svq1.o h263.o |