summaryrefslogtreecommitdiff
path: root/libavformat/wtvenc.c
diff options
context:
space:
mode:
authorCarl Eugen Hoyos <cehoyos@ag.or.at>2014-01-29 00:44:59 +0100
committerCarl Eugen Hoyos <cehoyos@ag.or.at>2014-01-29 00:44:59 +0100
commit862174ec831d5fb01c44e8e3f7d3cd28002329bf (patch)
tree32c81a8d2afc72f98b8b9de64968287b1dee921a /libavformat/wtvenc.c
parent4151b9953e2386da24fe6b65c4fc02fe3d1da948 (diff)
downloadffmpeg-862174ec831d5fb01c44e8e3f7d3cd28002329bf.tar.gz
Move GUID-related objects to riffenc.c and riff.c.
This simplifies the following eac3-in-wav patch.
Diffstat (limited to 'libavformat/wtvenc.c')
-rw-r--r--libavformat/wtvenc.c11
1 files changed, 0 insertions, 11 deletions
diff --git a/libavformat/wtvenc.c b/libavformat/wtvenc.c
index 5e3b9b9874..b82ff0b7a2 100644
--- a/libavformat/wtvenc.c
+++ b/libavformat/wtvenc.c
@@ -31,7 +31,6 @@
#include "avio_internal.h"
#include "internal.h"
#include "wtv.h"
-#include "asf.h"
#define WTV_BIGSECTOR_SIZE (1 << WTV_BIGSECTOR_BITS)
#define INDEX_BASE 0x2
@@ -130,16 +129,6 @@ typedef struct {
#define write_pad(pb, size) ffio_fill(pb, 0, size)
-static const ff_asf_guid *get_codec_guid(enum AVCodecID id, const AVCodecGuid *av_guid)
-{
- int i;
- for (i = 0; av_guid[i].id != AV_CODEC_ID_NONE; i++) {
- if (id == av_guid[i].id)
- return &(av_guid[i].guid);
- }
- return NULL;
-}
-
/**
* Write chunk header. If header chunk (0x80000000 set) then add to list of header chunks
*/