FFmpeg
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Groups Pages
vc1testenc.c
Go to the documentation of this file.
1 /*
2  * VC-1 test bitstreams format muxer.
3  * Copyright (c) 2008 Konstantin Shishkov
4  *
5  * This file is part of FFmpeg.
6  *
7  * FFmpeg is free software; you can redistribute it and/or
8  * modify it under the terms of the GNU Lesser General Public
9  * License as published by the Free Software Foundation; either
10  * version 2.1 of the License, or (at your option) any later version.
11  *
12  * FFmpeg is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15  * Lesser General Public License for more details.
16  *
17  * You should have received a copy of the GNU Lesser General Public
18  * License along with FFmpeg; if not, write to the Free Software
19  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
20  */
21 #include "avformat.h"
22 #include "internal.h"
23 
24 typedef struct RCVContext {
25  int frames;
26 } RCVContext;
27 
29 {
30  AVCodecParameters *par = s->streams[0]->codecpar;
31  AVIOContext *pb = s->pb;
32 
33  if (par->codec_id != AV_CODEC_ID_WMV3) {
34  av_log(s, AV_LOG_ERROR, "Only WMV3 is accepted!\n");
35  return -1;
36  }
37  avio_wl24(pb, 0); //frames count will be here
38  avio_w8(pb, 0xC5);
39  avio_wl32(pb, 4);
40  avio_write(pb, par->extradata, 4);
41  avio_wl32(pb, par->height);
42  avio_wl32(pb, par->width);
43  avio_wl32(pb, 0xC);
44  avio_wl24(pb, 0); // hrd_buffer
45  avio_w8(pb, 0x80); // level|cbr|res1
46  avio_wl32(pb, 0); // hrd_rate
47  if (s->streams[0]->avg_frame_rate.den && s->streams[0]->avg_frame_rate.num == 1)
48  avio_wl32(pb, s->streams[0]->avg_frame_rate.den);
49  else
50  avio_wl32(pb, 0xFFFFFFFF); //variable framerate
51  avpriv_set_pts_info(s->streams[0], 32, 1, 1000);
52 
53  return 0;
54 }
55 
57 {
58  RCVContext *ctx = s->priv_data;
59  AVIOContext *pb = s->pb;
60 
61  if (!pkt->size)
62  return 0;
63  avio_wl32(pb, pkt->size | ((pkt->flags & AV_PKT_FLAG_KEY) ? 0x80000000 : 0));
64  avio_wl32(pb, pkt->pts);
65  avio_write(pb, pkt->data, pkt->size);
66  ctx->frames++;
67 
68  return 0;
69 }
70 
72 {
73  RCVContext *ctx = s->priv_data;
74  AVIOContext *pb = s->pb;
75 
76  if (s->pb->seekable & AVIO_SEEKABLE_NORMAL) {
77  avio_seek(pb, 0, SEEK_SET);
78  avio_wl24(pb, ctx->frames);
79  avio_flush(pb);
80  }
81  return 0;
82 }
83 
85  .name = "vc1test",
86  .long_name = NULL_IF_CONFIG_SMALL("VC-1 test bitstream"),
87  .extensions = "rcv",
88  .priv_data_size = sizeof(RCVContext),
89  .audio_codec = AV_CODEC_ID_NONE,
90  .video_codec = AV_CODEC_ID_WMV3,
94 };
static void write_packet(OutputFile *of, AVPacket *pkt, OutputStream *ost, int unqueue)
Definition: ffmpeg.c:689
Bytestream IO Context.
Definition: avio.h:161
void avpriv_set_pts_info(AVStream *s, int pts_wrap_bits, unsigned int pts_num, unsigned int pts_den)
Set the time base and wrapping info for a given stream.
Definition: utils.c:4882
enum AVCodecID codec_id
Specific type of the encoded data (the codec used).
Definition: avcodec.h:3900
int num
Numerator.
Definition: rational.h:59
int size
Definition: avcodec.h:1446
int64_t avio_seek(AVIOContext *s, int64_t offset, int whence)
fseek() equivalent for AVIOContext.
Definition: aviobuf.c:246
static AVPacket pkt
This struct describes the properties of an encoded stream.
Definition: avcodec.h:3892
Format I/O context.
Definition: avformat.h:1351
void avio_wl32(AVIOContext *s, unsigned int val)
Definition: aviobuf.c:369
int width
Video only.
Definition: avcodec.h:3966
AVOutputFormat ff_vc1t_muxer
Definition: vc1testenc.c:84
AVStream ** streams
A list of all streams in the file.
Definition: avformat.h:1419
uint8_t * data
Definition: avcodec.h:1445
void avio_write(AVIOContext *s, const unsigned char *buf, int size)
Definition: aviobuf.c:218
#define av_log(a,...)
#define AV_PKT_FLAG_KEY
The packet contains a keyframe.
Definition: avcodec.h:1477
#define AV_LOG_ERROR
Something went wrong and cannot losslessly be recovered.
Definition: log.h:176
static int vc1test_write_packet(AVFormatContext *s, AVPacket *pkt)
Definition: vc1testenc.c:56
#define NULL_IF_CONFIG_SMALL(x)
Return NULL if CONFIG_SMALL is true, otherwise the argument without modification. ...
Definition: internal.h:186
static int vc1test_write_header(AVFormatContext *s)
Definition: vc1testenc.c:28
AVRational avg_frame_rate
Average framerate.
Definition: avformat.h:947
int flags
A combination of AV_PKT_FLAG values.
Definition: avcodec.h:1451
static int vc1test_write_trailer(AVFormatContext *s)
Definition: vc1testenc.c:71
int seekable
A combination of AVIO_SEEKABLE_ flags or 0 when the stream is not seekable.
Definition: avio.h:260
int void avio_flush(AVIOContext *s)
Force flushing of buffered data.
Definition: aviobuf.c:238
static int write_trailer(AVFormatContext *s1)
Definition: v4l2enc.c:94
const char * name
Definition: avformat.h:507
AVFormatContext * ctx
Definition: movenc.c:48
#define s(width, name)
Definition: cbs_vp9.c:257
#define AVIO_SEEKABLE_NORMAL
Seeking works like for a local file.
Definition: avio.h:40
int frames
Definition: vc1testenc.c:25
AVIOContext * pb
I/O context.
Definition: avformat.h:1393
void avio_w8(AVIOContext *s, int b)
Definition: aviobuf.c:196
void avio_wl24(AVIOContext *s, unsigned int val)
Definition: aviobuf.c:481
Main libavformat public API header.
int den
Denominator.
Definition: rational.h:60
void * priv_data
Format private data.
Definition: avformat.h:1379
static void write_header(FFV1Context *f)
Definition: ffv1enc.c:337
uint8_t * extradata
Extra binary data needed for initializing the decoder, codec-dependent.
Definition: avcodec.h:3914
AVCodecParameters * codecpar
Codec parameters associated with this stream.
Definition: avformat.h:1021
This structure stores compressed data.
Definition: avcodec.h:1422
int64_t pts
Presentation timestamp in AVStream->time_base units; the time at which the decompressed packet will b...
Definition: avcodec.h:1438