diff options
author | Anton Khirnov <anton@khirnov.net> | 2013-10-27 12:22:52 +0100 |
---|---|---|
committer | Anton Khirnov <anton@khirnov.net> | 2013-11-04 08:51:26 +0100 |
commit | cc14ee03a7b91c69343f8d60c9e089a1950eeadb (patch) | |
tree | 701d4ecf084db88e2eddf113e9c17af24f295f97 /libavcodec/Makefile | |
parent | 5cd6513f5be14b9744783d3d9e853d3f11065e93 (diff) | |
download | ffmpeg-cc14ee03a7b91c69343f8d60c9e089a1950eeadb.tar.gz |
lavc: split slice and frame threading functions into separate files
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 b3ecf7999d..205359e877 100644 --- a/libavcodec/Makefile +++ b/libavcodec/Makefile @@ -677,8 +677,8 @@ OBJS-$(CONFIG_REMOVE_EXTRADATA_BSF) += remove_extradata_bsf.o OBJS-$(CONFIG_TEXT2MOVSUB_BSF) += movsub_bsf.o # thread libraries -OBJS-$(HAVE_PTHREADS) += pthread.o -OBJS-$(HAVE_W32THREADS) += pthread.o +OBJS-$(HAVE_PTHREADS) += pthread.o pthread_slice.o pthread_frame.o +OBJS-$(HAVE_W32THREADS) += pthread.o pthread_slice.o pthread_frame.o SKIPHEADERS += %_tablegen.h \ %_tables.h \ |