From d58093ac2fe73fc37c59ef6e5ce8a54126d786fa Mon Sep 17 00:00:00 2001 From: Jay Sorg Date: Wed, 5 Apr 2017 23:37:16 -0700 Subject: [PATCH] rename rfxcompose to rfxencode_compose --- src/Makefile.am | 4 ++-- src/rfxencode.c | 2 +- src/{rfxcompose.c => rfxencode_compose.c} | 0 src/{rfxcompose.h => rfxencode_compose.h} | 0 4 files changed, 3 insertions(+), 3 deletions(-) rename src/{rfxcompose.c => rfxencode_compose.c} (100%) rename src/{rfxcompose.h => rfxencode_compose.h} (100%) diff --git a/src/Makefile.am b/src/Makefile.am index 4e20371..ea85e7c 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -20,7 +20,7 @@ endif noinst_HEADERS = \ rfx_bitstream.h \ rfxcommon.h \ - rfxcompose.h \ + rfxencode_compose.h \ rfxconstants.h \ rfxencode_alpha.h \ rfxencode_differential.h \ @@ -36,7 +36,7 @@ noinst_HEADERS = \ lib_LTLIBRARIES = librfxencode.la librfxencode_la_SOURCES = $(noinst_HEADERS) rfxencode.c \ - rfxcompose.c rfxencode_tile.c rfxencode_dwt.c \ + rfxencode_compose.c rfxencode_tile.c rfxencode_dwt.c \ rfxencode_quantization.c rfxencode_differential.c \ rfxencode_rlgr1.c rfxencode_rlgr3.c rfxencode_alpha.c \ rfxencode_diff_rlgr1.c rfxencode_diff_rlgr3.c diff --git a/src/rfxencode.c b/src/rfxencode.c index 315c6e9..bd5d7b7 100644 --- a/src/rfxencode.c +++ b/src/rfxencode.c @@ -28,7 +28,7 @@ #include "rfxcommon.h" #include "rfxencode.h" -#include "rfxcompose.h" +#include "rfxencode_compose.h" #include "rfxconstants.h" #include "rfxencode_tile.h" diff --git a/src/rfxcompose.c b/src/rfxencode_compose.c similarity index 100% rename from src/rfxcompose.c rename to src/rfxencode_compose.c diff --git a/src/rfxcompose.h b/src/rfxencode_compose.h similarity index 100% rename from src/rfxcompose.h rename to src/rfxencode_compose.h