Browse Source

wtvenc: use ffio_fill()

Signed-off-by: Paul B Mahol <onemda@gmail.com>
tags/n2.0
Paul B Mahol 12 years ago
parent
commit
38fefbc474
1 changed files with 2 additions and 6 deletions
  1. +2
    -6
      libavformat/wtvenc.c

+ 2
- 6
libavformat/wtvenc.c View File

@@ -28,6 +28,7 @@
#include "libavutil/intreadwrite.h"
#include "libavutil/avassert.h"
#include "avformat.h"
#include "avio_internal.h"
#include "internal.h"
#include "wtv.h"
#include "asf.h"
@@ -127,12 +128,7 @@ typedef struct {
WTVHeaderWriteFunc *write_header;
} WTVRootEntryTable;

static int write_pad(AVIOContext *pb, int size)
{
for (; size > 0; size--)
avio_w8(pb, 0);
return 0;
}
#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)
{


Loading…
Cancel
Save