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 Libav.
6  *
7  * Libav 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  * Libav 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 Libav; 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  AVCodecContext *avc = s->streams[0]->codec;
31  AVIOContext *pb = s->pb;
32 
33  if (avc->codec_id != 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, avc->extradata, 4);
41  avio_wl32(pb, avc->height);
42  avio_wl32(pb, avc->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]->r_frame_rate.den && s->streams[0]->r_frame_rate.num == 1)
48  avio_wl32(pb, s->streams[0]->r_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  avio_flush(pb);
67  ctx->frames++;
68 
69  return 0;
70 }
71 
73 {
74  RCVContext *ctx = s->priv_data;
75  AVIOContext *pb = s->pb;
76 
77  if (s->pb->seekable) {
78  avio_seek(pb, 0, SEEK_SET);
79  avio_wl24(pb, ctx->frames);
80  avio_flush(pb);
81  }
82  return 0;
83 }
84 
86  .name = "rcv",
87  .long_name = NULL_IF_CONFIG_SMALL("VC-1 test bitstream"),
88  .mime_type = "",
89  .extensions = "rcv",
90  .priv_data_size = sizeof(RCVContext),
91  .audio_codec = CODEC_ID_NONE,
92  .video_codec = CODEC_ID_WMV3,
96 };
static int write_header(AVFormatContext *s)
Definition: assenc.c:28
Bytestream IO Context.
Definition: avio.h:68
void avpriv_set_pts_info(AVStream *s, int pts_wrap_bits, unsigned int pts_num, unsigned int pts_den)
Set the pts for a given stream.
Definition: utils.c:3828
static int write_packet(AVFormatContext *s, AVPacket *pkt)
Definition: assenc.c:58
int num
numerator
Definition: rational.h:44
int size
Definition: avcodec.h:909
int64_t avio_seek(AVIOContext *s, int64_t offset, int whence)
fseek() equivalent for AVIOContext.
Definition: aviobuf.c:211
#define AV_PKT_FLAG_KEY
The packet contains a keyframe.
Definition: avcodec.h:954
Format I/O context.
Definition: avformat.h:863
void avio_wl32(AVIOContext *s, unsigned int val)
Definition: aviobuf.c:316
AVOutputFormat ff_vc1t_muxer
Definition: vc1testenc.c:85
uint8_t * extradata
some codecs need / can use extradata like Huffman tables.
Definition: avcodec.h:1387
AVStream ** streams
Definition: avformat.h:908
uint8_t * data
Definition: avcodec.h:908
void avio_write(AVIOContext *s, const unsigned char *buf, int size)
Definition: aviobuf.c:190
static int write_trailer(AVFormatContext *s)
Definition: assenc.c:67
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:191
void av_log(void *avcl, int level, const char *fmt,...)
Definition: log.c:140
static int vc1test_write_header(AVFormatContext *s)
Definition: vc1testenc.c:28
int flags
A combination of AV_PKT_FLAG values.
Definition: avcodec.h:914
static int vc1test_write_trailer(AVFormatContext *s)
Definition: vc1testenc.c:72
AVCodecContext * codec
codec context
Definition: avformat.h:623
int seekable
A combination of AVIO_SEEKABLE_ flags or 0 when the stream is not seekable.
Definition: avio.h:122
int void avio_flush(AVIOContext *s)
Definition: aviobuf.c:205
int width
picture width / height.
Definition: avcodec.h:1408
const char * name
Definition: avformat.h:390
int frames
Definition: vc1testenc.c:25
AVIOContext * pb
Definition: avformat.h:896
void avio_w8(AVIOContext *s, int b)
Definition: aviobuf.c:169
main external API structure.
Definition: avcodec.h:1329
#define AV_LOG_ERROR
Something went wrong and cannot losslessly be recovered.
Definition: log.h:111
void avio_wl24(AVIOContext *s, unsigned int val)
Definition: aviobuf.c:539
Main libavformat public API header.
struct RCVContext RCVContext
int den
denominator
Definition: rational.h:45
void * priv_data
Format private data.
Definition: avformat.h:883
AVRational r_frame_rate
Real base framerate of the stream.
Definition: avformat.h:632
int64_t pts
Presentation timestamp in AVStream->time_base units; the time at which the decompressed packet will b...
Definition: avcodec.h:901
enum CodecID codec_id
Definition: avcodec.h:1575