Browse Source

mkvtimestamp v2 muxer: remove unneeded prefixes

Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
tags/n0.9
Michael Niedermayer 14 years ago
parent
commit
17c95361e9
1 changed files with 4 additions and 4 deletions
  1. +4
    -4
      libavformat/timecode_v2.c

+ 4
- 4
libavformat/timecode_v2.c View File

@@ -21,7 +21,7 @@

#include "avformat.h"

static int timecode_v2_write_header(AVFormatContext *s)
static int write_header(AVFormatContext *s)
{
static const char *header = "# timecode format v2\n";
put_buffer(s->pb, header, strlen(header));
@@ -29,7 +29,7 @@ static int timecode_v2_write_header(AVFormatContext *s)
return 0;
}

static int timecode_v2_write_packet(AVFormatContext *s, AVPacket *pkt)
static int write_packet(AVFormatContext *s, AVPacket *pkt)
{
char buf[256];
if (pkt->stream_index)
@@ -48,6 +48,6 @@ AVOutputFormat ff_timecode_v2_muxer = {
0,
CODEC_ID_NONE,
CODEC_ID_RAWVIDEO,
timecode_v2_write_header,
timecode_v2_write_packet,
write_header,
write_packet,
};

Loading…
Cancel
Save