]> git.sesse.net Git - ffmpeg/blob - libavformat/rawdec.c
avfilter: add readvitc filter
[ffmpeg] / libavformat / rawdec.c
1 /*
2  * RAW demuxers
3  * Copyright (c) 2001 Fabrice Bellard
4  * Copyright (c) 2005 Alex Beregszaszi
5  *
6  * This file is part of FFmpeg.
7  *
8  * FFmpeg is free software; you can redistribute it and/or
9  * modify it under the terms of the GNU Lesser General Public
10  * License as published by the Free Software Foundation; either
11  * version 2.1 of the License, or (at your option) any later version.
12  *
13  * FFmpeg is distributed in the hope that it will be useful,
14  * but WITHOUT ANY WARRANTY; without even the implied warranty of
15  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
16  * Lesser General Public License for more details.
17  *
18  * You should have received a copy of the GNU Lesser General Public
19  * License along with FFmpeg; if not, write to the Free Software
20  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
21  */
22
23 #include "avformat.h"
24 #include "internal.h"
25 #include "avio_internal.h"
26 #include "rawdec.h"
27 #include "libavutil/opt.h"
28 #include "libavutil/parseutils.h"
29 #include "libavutil/pixdesc.h"
30 #include "libavutil/avassert.h"
31 #include "libavutil/intreadwrite.h"
32
33 #define RAW_PACKET_SIZE 1024
34
35 int ff_raw_read_partial_packet(AVFormatContext *s, AVPacket *pkt)
36 {
37     int ret, size;
38
39     size = RAW_PACKET_SIZE;
40
41     if (av_new_packet(pkt, size) < 0)
42         return AVERROR(ENOMEM);
43
44     pkt->pos= avio_tell(s->pb);
45     pkt->stream_index = 0;
46     ret = ffio_read_partial(s->pb, pkt->data, size);
47     if (ret < 0) {
48         av_packet_unref(pkt);
49         return ret;
50     }
51     av_shrink_packet(pkt, ret);
52     return ret;
53 }
54
55 int ff_raw_audio_read_header(AVFormatContext *s)
56 {
57     AVStream *st = avformat_new_stream(s, NULL);
58     if (!st)
59         return AVERROR(ENOMEM);
60     st->codecpar->codec_type = AVMEDIA_TYPE_AUDIO;
61     st->codecpar->codec_id = s->iformat->raw_codec_id;
62     st->need_parsing = AVSTREAM_PARSE_FULL_RAW;
63     st->start_time = 0;
64     /* the parameters will be extracted from the compressed bitstream */
65
66     return 0;
67 }
68
69 /* MPEG-1/H.263 input */
70 int ff_raw_video_read_header(AVFormatContext *s)
71 {
72     AVStream *st;
73     FFRawVideoDemuxerContext *s1 = s->priv_data;
74     int ret = 0;
75
76
77     st = avformat_new_stream(s, NULL);
78     if (!st) {
79         ret = AVERROR(ENOMEM);
80         goto fail;
81     }
82
83     st->codecpar->codec_type = AVMEDIA_TYPE_VIDEO;
84     st->codecpar->codec_id = s->iformat->raw_codec_id;
85     st->need_parsing = AVSTREAM_PARSE_FULL_RAW;
86
87     st->avg_frame_rate = s1->framerate;
88     st->internal->avctx->framerate = s1->framerate;
89     avpriv_set_pts_info(st, 64, 1, 1200000);
90
91 fail:
92     return ret;
93 }
94
95 int ff_raw_data_read_header(AVFormatContext *s)
96 {
97     AVStream *st = avformat_new_stream(s, NULL);
98     if (!st)
99         return AVERROR(ENOMEM);
100     st->codecpar->codec_type = AVMEDIA_TYPE_DATA;
101     st->codecpar->codec_id = s->iformat->raw_codec_id;
102     st->start_time = 0;
103     return 0;
104 }
105
106 /* Note: Do not forget to add new entries to the Makefile as well. */
107
108 #define OFFSET(x) offsetof(FFRawVideoDemuxerContext, x)
109 #define DEC AV_OPT_FLAG_DECODING_PARAM
110 const AVOption ff_rawvideo_options[] = {
111     { "framerate", "", OFFSET(framerate), AV_OPT_TYPE_VIDEO_RATE, {.str = "25"}, 0, 0, DEC},
112     { NULL },
113 };
114
115 #if CONFIG_DATA_DEMUXER
116 AVInputFormat ff_data_demuxer = {
117     .name           = "data",
118     .long_name      = NULL_IF_CONFIG_SMALL("raw data"),
119     .read_header    = ff_raw_data_read_header,
120     .read_packet    = ff_raw_read_partial_packet,
121     .raw_codec_id   = AV_CODEC_ID_NONE,
122     .flags          = AVFMT_NOTIMESTAMPS,
123 };
124 #endif
125
126 #if CONFIG_MJPEG_DEMUXER
127 static int mjpeg_probe(AVProbeData *p)
128 {
129     int i;
130     int state = -1;
131     int nb_invalid = 0;
132     int nb_frames = 0;
133
134     for (i=0; i<p->buf_size-2; i++) {
135         int c;
136         if (p->buf[i] != 0xFF)
137             continue;
138         c = p->buf[i+1];
139         switch (c) {
140         case 0xD8:
141             state = 0xD8;
142             break;
143         case 0xC0:
144         case 0xC1:
145         case 0xC2:
146         case 0xC3:
147         case 0xC5:
148         case 0xC6:
149         case 0xC7:
150         case 0xF7:
151             if (state == 0xD8) {
152                 state = 0xC0;
153             } else
154                 nb_invalid++;
155             break;
156         case 0xDA:
157             if (state == 0xC0) {
158                 state = 0xDA;
159             } else
160                 nb_invalid++;
161             break;
162         case 0xD9:
163             if (state == 0xDA) {
164                 state = 0xD9;
165                 nb_frames++;
166             } else
167                 nb_invalid++;
168             break;
169         default:
170             if (  (c >= 0x02 && c <= 0xBF)
171                 || c == 0xC8) {
172                 nb_invalid++;
173             }
174         }
175     }
176
177     if (nb_invalid*4 + 1 < nb_frames) {
178         static const char ct_jpeg[] = "\r\nContent-Type: image/jpeg\r\n";
179         int i;
180
181         for (i=0; i<FFMIN(p->buf_size - (int)sizeof(ct_jpeg), 100); i++)
182             if (!memcmp(p->buf + i, ct_jpeg, sizeof(ct_jpeg) - 1))
183                 return AVPROBE_SCORE_EXTENSION;
184
185         if (nb_invalid == 0 && nb_frames > 2)
186             return AVPROBE_SCORE_EXTENSION / 2;
187         return AVPROBE_SCORE_EXTENSION / 4;
188     }
189
190     return 0;
191 }
192
193 FF_DEF_RAWVIDEO_DEMUXER2(mjpeg, "raw MJPEG video", mjpeg_probe, "mjpg,mjpeg,mpo", AV_CODEC_ID_MJPEG, AVFMT_GENERIC_INDEX|AVFMT_NOTIMESTAMPS)
194 #endif