Mercurial > libavformat.hg
annotate mpegvideodec.c @ 6447:ef0ad6df55b2 libavformat
move raw video demuxer to its own file
| author | aurel |
|---|---|
| date | Mon, 30 Aug 2010 22:53:16 +0000 |
| parents | b36b683626e6 |
| children | 4775a49a6045 |
| rev | line source |
|---|---|
| 885 | 1 /* |
| 6431 | 2 * RAW MPEG video demuxer |
| 3 * Copyright (c) 2002-2003 Fabrice Bellard | |
| 4 * Copyright (c) 2006 Michael Niedermayer <michaelni@gmx.at> | |
| 0 | 5 * |
|
1358
0899bfe4105c
Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents:
1245
diff
changeset
|
6 * This file is part of FFmpeg. |
|
0899bfe4105c
Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents:
1245
diff
changeset
|
7 * |
|
0899bfe4105c
Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents:
1245
diff
changeset
|
8 * FFmpeg is free software; you can redistribute it and/or |
| 0 | 9 * modify it under the terms of the GNU Lesser General Public |
| 10 * License as published by the Free Software Foundation; either | |
|
1358
0899bfe4105c
Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents:
1245
diff
changeset
|
11 * version 2.1 of the License, or (at your option) any later version. |
| 0 | 12 * |
|
1358
0899bfe4105c
Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents:
1245
diff
changeset
|
13 * FFmpeg is distributed in the hope that it will be useful, |
| 0 | 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 | |
|
1358
0899bfe4105c
Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents:
1245
diff
changeset
|
19 * License along with FFmpeg; if not, write to the Free Software |
|
896
edbe5c3717f9
Update licensing information: The FSF changed postal address.
diego
parents:
887
diff
changeset
|
20 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA |
| 0 | 21 */ |
| 3286 | 22 |
| 0 | 23 #include "avformat.h" |
|
2545
213268d7594e
move unrelated functions declarations out of allformats.h
aurel
parents:
2368
diff
changeset
|
24 #include "raw.h" |
| 0 | 25 |
| 887 | 26 #define SEQ_START_CODE 0x000001b3 |
| 27 #define GOP_START_CODE 0x000001b8 | |
| 28 #define PICTURE_START_CODE 0x00000100 | |
| 924 | 29 #define SLICE_START_CODE 0x00000101 |
| 30 #define PACK_START_CODE 0x000001ba | |
|
985
7f8b1a1ac020
can't have PES headers in MPEG video elementary streams so fail probe
mru
parents:
939
diff
changeset
|
31 #define VIDEO_ID 0x000001e0 |
|
7f8b1a1ac020
can't have PES headers in MPEG video elementary streams so fail probe
mru
parents:
939
diff
changeset
|
32 #define AUDIO_ID 0x000001c0 |
| 0 | 33 |
| 34 static int mpegvideo_probe(AVProbeData *p) | |
| 35 { | |
| 924 | 36 uint32_t code= -1; |
|
985
7f8b1a1ac020
can't have PES headers in MPEG video elementary streams so fail probe
mru
parents:
939
diff
changeset
|
37 int pic=0, seq=0, slice=0, pspack=0, pes=0; |
| 924 | 38 int i; |
| 49 | 39 |
| 924 | 40 for(i=0; i<p->buf_size; i++){ |
| 41 code = (code<<8) + p->buf[i]; | |
| 42 if ((code & 0xffffff00) == 0x100) { | |
| 43 switch(code){ | |
| 44 case SEQ_START_CODE: seq++; break; | |
| 45 case PICTURE_START_CODE: pic++; break; | |
| 46 case SLICE_START_CODE: slice++; break; | |
| 47 case PACK_START_CODE: pspack++; break; | |
| 48 } | |
| 1965 | 49 if ((code & 0x1f0) == VIDEO_ID) pes++; |
| 50 else if((code & 0x1e0) == AUDIO_ID) pes++; | |
| 924 | 51 } |
| 0 | 52 } |
|
985
7f8b1a1ac020
can't have PES headers in MPEG video elementary streams so fail probe
mru
parents:
939
diff
changeset
|
53 if(seq && seq*9<=pic*10 && pic*9<=slice*10 && !pspack && !pes) |
|
5191
9affc096944c
Make h261 and mpegvideo probe a little more robust so they dont fail with
michael
parents:
5184
diff
changeset
|
54 return pic>1 ? AVPROBE_SCORE_MAX/2+1 : AVPROBE_SCORE_MAX/4; // +1 for .mpg |
| 0 | 55 return 0; |
| 56 } | |
|
4548
2c9ebc4029ae
add raw demuxer for Chinese AVS elementary streams
stefang
parents:
4510
diff
changeset
|
57 |
|
3546
45c3d2b2b2fb
Alphabetically order AVInputFormat/AVOutputFormat declarations.
diego
parents:
3545
diff
changeset
|
58 AVInputFormat mpegvideo_demuxer = { |
|
45c3d2b2b2fb
Alphabetically order AVInputFormat/AVOutputFormat declarations.
diego
parents:
3545
diff
changeset
|
59 "mpegvideo", |
| 4501 | 60 NULL_IF_CONFIG_SMALL("raw MPEG video"), |
| 0 | 61 0, |
|
3546
45c3d2b2b2fb
Alphabetically order AVInputFormat/AVOutputFormat declarations.
diego
parents:
3545
diff
changeset
|
62 mpegvideo_probe, |
| 6430 | 63 ff_raw_video_read_header, |
|
4610
41542d2edcf4
Separate the raw FLAC demuxer from raw.c and put in a new file,
jbr
parents:
4577
diff
changeset
|
64 ff_raw_read_partial_packet, |
| 1756 | 65 .flags= AVFMT_GENERIC_INDEX, |
|
3546
45c3d2b2b2fb
Alphabetically order AVInputFormat/AVOutputFormat declarations.
diego
parents:
3545
diff
changeset
|
66 .value = CODEC_ID_MPEG1VIDEO, |
|
868
c6b1dde68f3a
Ingenient MJPEG support, more at http://www.artificis.hu/files/texts/ingenient.txt
alex
parents:
858
diff
changeset
|
67 }; |
