mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-01-08 13:22:53 +02:00
add ff_get_bmp_header
Originally committed as revision 26091 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
parent
52654005ca
commit
456a70aeb8
@ -570,17 +570,7 @@ static int avi_read_header(AVFormatContext *s, AVFormatParameters *ap)
|
||||
url_fskip(pb, size);
|
||||
break;
|
||||
}
|
||||
get_le32(pb); /* size */
|
||||
st->codec->width = get_le32(pb);
|
||||
st->codec->height = (int32_t)get_le32(pb);
|
||||
get_le16(pb); /* panes */
|
||||
st->codec->bits_per_coded_sample= get_le16(pb); /* depth */
|
||||
tag1 = get_le32(pb);
|
||||
get_le32(pb); /* ImageSize */
|
||||
get_le32(pb); /* XPelsPerMeter */
|
||||
get_le32(pb); /* YPelsPerMeter */
|
||||
get_le32(pb); /* ClrUsed */
|
||||
get_le32(pb); /* ClrImportant */
|
||||
tag1 = ff_get_bmp_header(pb, st);
|
||||
|
||||
if (tag1 == MKTAG('D', 'X', 'S', 'B') || tag1 == MKTAG('D','X','S','A')) {
|
||||
st->codec->codec_type = AVMEDIA_TYPE_SUBTITLE;
|
||||
|
@ -440,6 +440,23 @@ int ff_put_wav_header(ByteIOContext *pb, AVCodecContext *enc)
|
||||
return hdrsize;
|
||||
}
|
||||
|
||||
int ff_get_bmp_header(ByteIOContext *pb, AVStream *st)
|
||||
{
|
||||
int tag1;
|
||||
get_le32(pb); /* size */
|
||||
st->codec->width = get_le32(pb);
|
||||
st->codec->height = (int32_t)get_le32(pb);
|
||||
get_le16(pb); /* planes */
|
||||
st->codec->bits_per_coded_sample= get_le16(pb); /* depth */
|
||||
tag1 = get_le32(pb);
|
||||
get_le32(pb); /* ImageSize */
|
||||
get_le32(pb); /* XPelsPerMeter */
|
||||
get_le32(pb); /* YPelsPerMeter */
|
||||
get_le32(pb); /* ClrUsed */
|
||||
get_le32(pb); /* ClrImportant */
|
||||
return tag1;
|
||||
}
|
||||
|
||||
/* BITMAPINFOHEADER header */
|
||||
void ff_put_bmp_header(ByteIOContext *pb, AVCodecContext *enc, const AVCodecTag *tags, int for_asf)
|
||||
{
|
||||
|
@ -35,6 +35,13 @@
|
||||
int64_t ff_start_tag(ByteIOContext *pb, const char *tag);
|
||||
void ff_end_tag(ByteIOContext *pb, int64_t start);
|
||||
|
||||
/**
|
||||
* Read BITMAPINFOHEADER structure and set AVStream codec width, height and
|
||||
* bits_per_encoded_sample fields. Does not read extradata.
|
||||
* @return codec tag
|
||||
*/
|
||||
int ff_get_bmp_header(ByteIOContext *pb, AVStream *st);
|
||||
|
||||
void ff_put_bmp_header(ByteIOContext *pb, AVCodecContext *enc, const AVCodecTag *tags, int for_asf);
|
||||
int ff_put_wav_header(ByteIOContext *pb, AVCodecContext *enc);
|
||||
enum CodecID ff_wav_codec_get_id(unsigned int tag, int bps);
|
||||
|
Loading…
Reference in New Issue
Block a user