pcm_bluray: rename pcm-mpeg.c to pcm-bluray.c
authorChristian Schmidt <schmidt@digadd.de>
Fri, 30 Aug 2013 16:15:44 +0000 (18:15 +0200)
committerLuca Barbato <lu_zero@gentoo.org>
Sat, 31 Aug 2013 09:00:46 +0000 (11:00 +0200)
The original idea was to collect PCM codecs that could appear in various
MPEG streams in this file. Discussion in IRC lead to the conclusion that
one codec per file would be better and stop the need for #ifdefs.

libavcodec/Makefile
libavcodec/pcm-bluray.c [moved from libavcodec/pcm-mpeg.c with 99% similarity]

index abf0a38..2eba60f 100644 (file)
@@ -426,7 +426,7 @@ OBJS-$(CONFIG_ZMBV_ENCODER)            += zmbvenc.o
 # (AD)PCM decoders/encoders
 OBJS-$(CONFIG_PCM_ALAW_DECODER)           += pcm.o
 OBJS-$(CONFIG_PCM_ALAW_ENCODER)           += pcm.o
-OBJS-$(CONFIG_PCM_BLURAY_DECODER)         += pcm-mpeg.o
+OBJS-$(CONFIG_PCM_BLURAY_DECODER)         += pcm-bluray.o
 OBJS-$(CONFIG_PCM_DVD_DECODER)            += pcm.o
 OBJS-$(CONFIG_PCM_F32BE_DECODER)          += pcm.o
 OBJS-$(CONFIG_PCM_F32BE_ENCODER)          += pcm.o
similarity index 99%
rename from libavcodec/pcm-mpeg.c
rename to libavcodec/pcm-bluray.c
index 7b7afed..9fbd9df 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * LPCM codecs for PCM formats found in MPEG streams
+ * LPCM codecs for PCM format found in Blu-ray PCM streams
  * Copyright (c) 2009, 2013 Christian Schmidt
  *
  * This file is part of Libav.
@@ -21,7 +21,7 @@
 
 /**
  * @file
- * PCM codecs for encodings found in MPEG streams (DVD/Blu-ray)
+ * PCM codec for Blu-ray PCM audio tracks
  */
 
 #include "libavutil/channel_layout.h"