1
1
mirror of https://github.com/wader/fq.git synced 2024-11-23 00:57:15 +03:00
fq/format/format.go

188 lines
4.2 KiB
Go
Raw Normal View History

package format
import (
"github.com/wader/fq/pkg/bitio"
)
//nolint:revive
const (
ALL = "all"
PROBE = "probe"
RAW = "raw"
// TODO: rename PROBE_* something?
IMAGE = "image"
JSON = "json"
AAC_FRAME = "aac_frame"
ADTS = "adts"
ADTS_FRAME = "adts_frame"
APEV2 = "apev2"
AV1_CCR = "av1_ccr"
AV1_FRAME = "av1_frame"
AV1_OBU = "av1_obu"
BZIP2 = "bzip2"
DNS = "dns"
ELF = "elf"
ETHER8023 = "ether8023"
IPV4 = "ipv4"
UDP = "udp"
TCP = "tcp"
EXIF = "exif"
FLAC = "flac"
FLAC_FRAME = "flac_frame"
FLAC_METADATABLOCK = "flac_metadatablock"
FLAC_METADATABLOCKS = "flac_metadatablocks"
FLAC_STREAMINFO = "flac_streaminfo"
FLAC_PICTURE = "flac_picture"
FLV = "flv" // TODO:
GIF = "gif"
GZIP = "gzip"
ICC_PROFILE = "icc_profile"
ID3V1 = "id3v1"
ID3V11 = "id3v11"
ID3V2 = "id3v2"
JPEG = "jpeg"
MATROSKA = "matroska"
MP3 = "mp3"
MP3_FRAME = "mp3_frame"
XING = "xing"
MP4 = "mp4"
MPEG_ASC = "mpeg_asc"
AVC_ANNEXB = "avc_annexb"
AVC_DCR = "avc_dcr"
AVC_SPS = "avc_sps"
AVC_PPS = "avc_pps"
AVC_SEI = "avc_sei"
AVC_NALU = "avc_nalu"
AVC_AU = "avc_au"
HEVC_ANNEXB = "hevc_annexb"
HEVC_AU = "hevc_au"
HEVC_NALU = "hevc_nalu"
HEVC_DCR = "hevc_dcr"
MPEG_ES = "mpeg_es"
MPEG_PES = "mpeg_pes"
MPEG_PES_PACKET = "mpeg_pes_packet"
MPEG_SPU = "mpeg_spu"
MPEG_TS = "mpeg_ts"
OGG = "ogg"
OGG_PAGE = "ogg_page"
OPUS_PACKET = "opus_packet"
PCAP = "pcap"
PCAPNG = "pcapng"
PNG = "png"
PROTOBUF = "protobuf"
PROTOBUF_WIDEVINE = "protobuf_widevine"
PSSH_PLAYREADY = "pssh_playready"
TAR = "tar"
TIFF = "tiff"
VORBIS_COMMENT = "vorbis_comment"
VORBIS_PACKET = "vorbis_packet"
VP8_FRAME = "vp8_frame"
VP9_FRAME = "vp9_frame"
VP9_CFM = "vp9_cfm"
VPX_CCR = "vpx_ccr"
WAV = "wav"
WEBP = "webp"
2021-11-01 15:08:52 +03:00
ZIP = "zip"
)
// below are data types used to communicate between formats <FormatName>In/Out
type FlacStreamInfo struct {
SampleRate uint64
BitPerSample uint64
TotalSamplesInStream uint64
MD5 []byte
}
type FlacStreaminfoOut struct {
StreamInfo FlacStreamInfo
}
type FlacMetadatablockStreamInfo struct {
SampleRate uint64
BitPerSample uint64
TotalSamplesInStream uint64
}
type FlacMetadatablockOut struct {
IsLastBlock bool
HasStreamInfo bool
StreamInfo FlacStreamInfo
}
type FlacMetadatablocksOut struct {
HasStreamInfo bool
StreamInfo FlacStreamInfo
}
type FlacFrameIn struct {
SamplesBuf []byte
StreamInfo FlacStreamInfo
}
type FlacFrameOut struct {
SamplesBuf []byte
Samples uint64
Channels int
BitsPerSample int
}
type OggPageOut struct {
IsLastPage bool
IsFirstPage bool
IsContinuedPacket bool
StreamSerialNumber uint32
SequenceNo uint32
Segments []*bitio.Buffer // TODO: bitio.Reader (bitio.MultiReader internally?)
}
type AvcIn struct {
LengthSize uint64
}
type AvcDcrOut struct {
LengthSize uint64
}
type HevcIn struct {
LengthSize uint64
}
type HevcDcrOut struct {
LengthSize uint64
}
type ProtoBufIn struct {
Message ProtoBufMessage
}
2021-11-28 18:59:45 +03:00
type MpegDecoderConfig struct {
ObjectType int
ASCObjectType int
}
type MpegEsOut struct {
DecoderConfigs []MpegDecoderConfig
}
type MPEGASCOut struct {
ObjectType int
}
type AACFrameIn struct {
ObjectType int
}
type MP3FrameOut struct {
MPEGVersion int
ProtectionAbsent bool
BitRate int
SampleRate int
ChannelsIndex int
ChannelModeIndex int
}