diff options
author | Diego Biurrun <diego@biurrun.de> | 2008-04-22 16:26:15 +0000 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2008-04-22 16:26:15 +0000 |
commit | 9fa58f19ff427878de67024a56d45d1f02037bd0 (patch) | |
tree | dc5e05769f7ac14399f080d3223fad36e0570482 /libavcodec | |
parent | 6ef4ba3fb361e146f4385cadb7cce00107229e84 (diff) | |
download | ffmpeg-9fa58f19ff427878de67024a56d45d1f02037bd0.tar.gz |
Rename diracschro_common.[ch] to libdirac_libschro.[ch], external library
glue code should have a lib prefix in its name.
Originally committed as revision 12924 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec')
-rw-r--r-- | libavcodec/libdirac_libschro.c (renamed from libavcodec/diracschro_common.c) | 4 | ||||
-rw-r--r-- | libavcodec/libdirac_libschro.h (renamed from libavcodec/diracschro_common.h) | 8 |
2 files changed, 6 insertions, 6 deletions
diff --git a/libavcodec/diracschro_common.c b/libavcodec/libdirac_libschro.c index df2b454a7c..0b134c42e5 100644 --- a/libavcodec/diracschro_common.c +++ b/libavcodec/libdirac_libschro.c @@ -19,11 +19,11 @@ */ /** -* @file diracschro_common.c +* @file libdirac_libschro.c * functions common to libdirac and libschroedinger */ -#include "diracschro_common.h" +#include "libdirac_libschro.h" static const FfmpegDiracSchroVideoFormatInfo ff_dirac_schro_video_format_info[] = { { 640, 480, 24000, 1001}, diff --git a/libavcodec/diracschro_common.h b/libavcodec/libdirac_libschro.h index e001827b90..35fe2b1a69 100644 --- a/libavcodec/diracschro_common.h +++ b/libavcodec/libdirac_libschro.h @@ -19,12 +19,12 @@ */ /** -* @file diracschro_common.h +* @file libdirac_libschro.h * data structures common to libdirac and libschroedinger */ -#ifndef FFMPEG_DIRACSCHRO_COMMON_H -#define FFMPEG_DIRACSCHRO_COMMON_H +#ifndef FFMPEG_LIBDIRAC_LIBSCHRO_H +#define FFMPEG_LIBDIRAC_LIBSCHRO_H #include "avcodec.h" @@ -104,4 +104,4 @@ void *ff_dirac_schro_queue_pop (FfmpegDiracSchroQueue *queue); */ void ff_dirac_schro_queue_free(FfmpegDiracSchroQueue *queue, void (*free_func)(void *)); -#endif /* FFMPEG_DIRACSCHRO_COMMON_H */ +#endif /* FFMPEG_LIBDIRAC_LIBSCHRO_H */ |