diff options
author | Matthieu Bouron <matthieu.bouron@stupeflix.com> | 2016-10-12 14:44:08 +0200 |
---|---|---|
committer | Matthieu Bouron <matthieu.bouron@stupeflix.com> | 2016-10-19 10:50:56 +0200 |
commit | d5082a2ce776a2e43e25998aa07541c9ab7af0d3 (patch) | |
tree | 6c7ac71a2a997e0c3adf182dab73c00a3abf2a8e /libavcodec/mediacodec.c | |
parent | f62c54456db0fdd3ff82397f9142715d5c479354 (diff) | |
download | ffmpeg-d5082a2ce776a2e43e25998aa07541c9ab7af0d3.tar.gz |
lavc/mediacodec: use more meaningful filenames
Adds the following changes:
* mediacodecdec.{c,h} -> mediacodecdec_common.{c,h}
* mediacodecdec_h2645.c -> mediacodecdec.c
Diffstat (limited to 'libavcodec/mediacodec.c')
-rw-r--r-- | libavcodec/mediacodec.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/libavcodec/mediacodec.c b/libavcodec/mediacodec.c index 37008e0305..4ad5921bc2 100644 --- a/libavcodec/mediacodec.c +++ b/libavcodec/mediacodec.c @@ -35,7 +35,8 @@ #include "libavutil/mem.h" #include "ffjni.h" -#include "mediacodecdec.h" +#include "mediacodecdec_common.h" +#include "version.h" AVMediaCodecContext *av_mediacodec_alloc_context(void) { |