mpegvideo: convert mpegvideo_common.h to a .c file
authorMans Rullgard <mans@mansr.com>
Fri, 3 Aug 2012 23:50:21 +0000 (00:50 +0100)
committerMans Rullgard <mans@mansr.com>
Thu, 9 Aug 2012 00:31:37 +0000 (01:31 +0100)
commit7a851153d3fe1a9e0d60bf11053870d1ea8241e6
tree633e3e5107933dca6e4ecb051e988441aad982af
parent18bbca1fd31360b6d21710db70d321fa0333e7a5
mpegvideo: convert mpegvideo_common.h to a .c file

This file defines a single, huge function, MPV_motion(), which
although being declared inline is not actually inlined by the
compiler (for good reason).  There is thus no sense in defining
this function in a header file, resulting in multiple copies of
it in the final library.

Signed-off-by: Mans Rullgard <mans@mansr.com>
libavcodec/Makefile
libavcodec/dnxhdenc.c
libavcodec/mpegvideo.c
libavcodec/mpegvideo.h
libavcodec/mpegvideo_enc.c
libavcodec/mpegvideo_motion.c [moved from libavcodec/mpegvideo_common.h with 97% similarity]