FFmpeg
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Groups Pages
smjpegenc.c
Go to the documentation of this file.
1 /*
2  * SMJPEG muxer
3  * Copyright (c) 2012 Paul B Mahol
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 
22 /**
23  * @file
24  * This is a muxer for Loki SDL Motion JPEG files
25  */
26 
27 #include "avformat.h"
28 #include "internal.h"
29 #include "smjpeg.h"
30 
31 typedef struct SMJPEGMuxContext {
32  uint32_t duration;
34 
36 {
38  AVIOContext *pb = s->pb;
39  int n, tag;
40 
41  if (s->nb_streams > 2) {
42  av_log(s, AV_LOG_ERROR, "more than >2 streams are not supported\n");
43  return AVERROR(EINVAL);
44  }
45  avio_write(pb, SMJPEG_MAGIC, 8);
46  avio_wb32(pb, 0);
47  avio_wb32(pb, 0);
48 
49  while ((t = av_dict_get(s->metadata, "", t, AV_DICT_IGNORE_SUFFIX))) {
50  avio_wl32(pb, SMJPEG_TXT);
51  avio_wb32(pb, strlen(t->key) + strlen(t->value) + 3);
52  avio_write(pb, t->key, strlen(t->key));
53  avio_write(pb, " = ", 3);
54  avio_write(pb, t->value, strlen(t->value));
55  }
56 
57  for (n = 0; n < s->nb_streams; n++) {
58  AVStream *st = s->streams[n];
59  AVCodecContext *codec = st->codec;
60  if (codec->codec_type == AVMEDIA_TYPE_AUDIO) {
62  if (!tag) {
63  av_log(s, AV_LOG_ERROR, "unsupported audio codec\n");
64  return AVERROR(EINVAL);
65  }
66  avio_wl32(pb, SMJPEG_SND);
67  avio_wb32(pb, 8);
68  avio_wb16(pb, codec->sample_rate);
69  avio_w8(pb, codec->bits_per_coded_sample);
70  avio_w8(pb, codec->channels);
71  avio_wl32(pb, tag);
72  avpriv_set_pts_info(st, 32, 1, 1000);
73  } else if (codec->codec_type == AVMEDIA_TYPE_VIDEO) {
75  if (!tag) {
76  av_log(s, AV_LOG_ERROR, "unsupported video codec\n");
77  return AVERROR(EINVAL);
78  }
79  avio_wl32(pb, SMJPEG_VID);
80  avio_wb32(pb, 12);
81  avio_wb32(pb, 0);
82  avio_wb16(pb, codec->width);
83  avio_wb16(pb, codec->height);
84  avio_wl32(pb, tag);
85  avpriv_set_pts_info(st, 32, 1, 1000);
86  }
87  }
88 
90  avio_flush(pb);
91 
92  return 0;
93 }
94 
96 {
97  SMJPEGMuxContext *smc = s->priv_data;
98  AVIOContext *pb = s->pb;
99  AVStream *st = s->streams[pkt->stream_index];
100  AVCodecContext *codec = st->codec;
101 
102  if (codec->codec_type == AVMEDIA_TYPE_AUDIO)
103  avio_wl32(pb, SMJPEG_SNDD);
104  else if (codec->codec_type == AVMEDIA_TYPE_VIDEO)
105  avio_wl32(pb, SMJPEG_VIDD);
106  else
107  return 0;
108 
109  avio_wb32(pb, pkt->pts);
110  avio_wb32(pb, pkt->size);
111  avio_write(pb, pkt->data, pkt->size);
112 
113  smc->duration = FFMAX(smc->duration, pkt->pts + pkt->duration);
114  return 0;
115 }
116 
118 {
119  SMJPEGMuxContext *smc = s->priv_data;
120  AVIOContext *pb = s->pb;
121  int64_t currentpos;
122 
123  if (pb->seekable) {
124  currentpos = avio_tell(pb);
125  avio_seek(pb, 12, SEEK_SET);
126  avio_wb32(pb, smc->duration);
127  avio_seek(pb, currentpos, SEEK_SET);
128  }
129 
130  avio_wl32(pb, SMJPEG_DONE);
131 
132  return 0;
133 }
134 
136  .name = "smjpeg",
137  .long_name = NULL_IF_CONFIG_SMALL("Loki SDL MJPEG"),
138  .priv_data_size = sizeof(SMJPEGMuxContext),
139  .audio_codec = AV_CODEC_ID_PCM_S16LE,
140  .video_codec = AV_CODEC_ID_MJPEG,
145  .codec_tag = (const AVCodecTag *const []){ ff_codec_smjpeg_video_tags, ff_codec_smjpeg_audio_tags, 0 },
146 };
#define NULL
Definition: coverity.c:32
const char * s
Definition: avisynth_c.h:631
Bytestream IO Context.
Definition: avio.h:111
#define SMJPEG_DONE
Definition: smjpeg.h:34
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:4006
static int smjpeg_write_trailer(AVFormatContext *s)
Definition: smjpegenc.c:117
int size
Definition: avcodec.h:1163
int64_t avio_seek(AVIOContext *s, int64_t offset, int whence)
fseek() equivalent for AVIOContext.
Definition: aviobuf.c:203
#define SMJPEG_HEND
Definition: smjpeg.h:35
static int smjpeg_write_packet(AVFormatContext *s, AVPacket *pkt)
Definition: smjpegenc.c:95
unsigned int ff_codec_get_tag(const AVCodecTag *tags, enum AVCodecID id)
Definition: utils.c:2703
SMJPEG common code.
static AVPacket pkt
const AVCodecTag ff_codec_smjpeg_video_tags[]
Definition: smjpeg.c:31
#define AVFMT_TS_NONSTRICT
Format does not require strictly increasing timestamps, but they must still be monotonic.
Definition: avformat.h:483
Format I/O context.
Definition: avformat.h:1272
void avio_wl32(AVIOContext *s, unsigned int val)
Definition: aviobuf.c:318
AVStream ** streams
A list of all streams in the file.
Definition: avformat.h:1340
#define SMJPEG_SND
Definition: smjpeg.h:36
AVDictionaryEntry * av_dict_get(const AVDictionary *m, const char *key, const AVDictionaryEntry *prev, int flags)
Get a dictionary entry with matching key.
Definition: dict.c:39
uint8_t * data
Definition: avcodec.h:1162
#define SMJPEG_VIDD
Definition: smjpeg.h:40
uint32_t tag
Definition: movenc.c:1333
static av_always_inline int64_t avio_tell(AVIOContext *s)
ftell() equivalent for AVIOContext.
Definition: avio.h:365
int bits_per_coded_sample
bits per sample/pixel from the demuxer (needed for huffyuv).
Definition: avcodec.h:2720
void avio_write(AVIOContext *s, const unsigned char *buf, int size)
Definition: aviobuf.c:177
int duration
Duration of this packet in AVStream->time_base units, 0 if unknown.
Definition: avcodec.h:1180
#define av_log(a,...)
#define SMJPEG_TXT
Definition: smjpeg.h:38
static int smjpeg_write_header(AVFormatContext *s)
Definition: smjpegenc.c:35
#define AV_LOG_ERROR
Something went wrong and cannot losslessly be recovered.
Definition: log.h:176
AVDictionary * metadata
Metadata that applies to the whole file.
Definition: avformat.h:1482
#define AVERROR(e)
Definition: error.h:43
#define SMJPEG_MAGIC
Definition: smjpeg.h:32
#define NULL_IF_CONFIG_SMALL(x)
Return NULL if CONFIG_SMALL is true, otherwise the argument without modification. ...
Definition: internal.h:175
#define FFMAX(a, b)
Definition: common.h:64
AVCodecContext * codec
Codec context associated with this stream.
Definition: avformat.h:861
unsigned int nb_streams
Number of elements in AVFormatContext.streams.
Definition: avformat.h:1328
int seekable
A combination of AVIO_SEEKABLE_ flags or 0 when the stream is not seekable.
Definition: avio.h:160
int void avio_flush(AVIOContext *s)
Force flushing of buffered data.
Definition: aviobuf.c:197
int width
picture width / height.
Definition: avcodec.h:1414
static int write_trailer(AVFormatContext *s1)
Definition: v4l2enc.c:94
#define AVFMT_GLOBALHEADER
Format wants global header.
Definition: avformat.h:471
const char * name
Definition: avformat.h:513
int n
Definition: avisynth_c.h:547
Stream structure.
Definition: avformat.h:842
enum AVMediaType codec_type
Definition: avcodec.h:1249
enum AVCodecID codec_id
Definition: avcodec.h:1258
int sample_rate
samples per second
Definition: avcodec.h:1985
AVIOContext * pb
I/O context.
Definition: avformat.h:1314
void avio_w8(AVIOContext *s, int b)
Definition: aviobuf.c:155
main external API structure.
Definition: avcodec.h:1241
uint32_t duration
Definition: smjpegenc.c:32
#define SMJPEG_VID
Definition: smjpeg.h:39
void avio_wb16(AVIOContext *s, unsigned int val)
Definition: aviobuf.c:422
static int flags
Definition: cpu.c:47
Main libavformat public API header.
#define SMJPEG_SNDD
Definition: smjpeg.h:37
char * key
Definition: dict.h:87
const AVCodecTag ff_codec_smjpeg_audio_tags[]
Definition: smjpeg.c:36
char * value
Definition: dict.h:88
int channels
number of audio channels
Definition: avcodec.h:1986
void * priv_data
Format private data.
Definition: avformat.h:1300
static void write_header(FFV1Context *f)
Definition: ffv1enc.c:493
void avio_wb32(AVIOContext *s, unsigned int val)
Definition: aviobuf.c:326
#define AV_DICT_IGNORE_SUFFIX
Return first entry in a dictionary whose first part corresponds to the search key, ignoring the suffix of the found key string.
Definition: dict.h:72
int stream_index
Definition: avcodec.h:1164
AVOutputFormat ff_smjpeg_muxer
Definition: smjpegenc.c:135
This structure stores compressed data.
Definition: avcodec.h:1139
static int write_packet(AVFormatContext *s1, AVPacket *pkt)
Definition: v4l2enc.c:86
int64_t pts
Presentation timestamp in AVStream->time_base units; the time at which the decompressed packet will b...
Definition: avcodec.h:1155