Skip to content

Commit 1eda21d

Browse files
committed
pdf: Add decoder
1 parent 94834c0 commit 1eda21d

File tree

3 files changed

+421
-1
lines changed

3 files changed

+421
-1
lines changed

format/all/all.go

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,7 @@ import (
3939
_ "github.com/wader/fq/format/ogg"
4040
_ "github.com/wader/fq/format/opus"
4141
_ "github.com/wader/fq/format/pcap"
42+
_ "github.com/wader/fq/format/pdf"
4243
_ "github.com/wader/fq/format/png"
4344
_ "github.com/wader/fq/format/prores"
4445
_ "github.com/wader/fq/format/protobuf"

format/format.go

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -114,14 +114,15 @@ var (
114114
OpusPacket = &decode.Group{Name: "opus_packet"}
115115
Pcap = &decode.Group{Name: "pcap"}
116116
Pcapng = &decode.Group{Name: "pcapng"}
117+
Pdf = &decode.Group{Name: "pdf"}
117118
Png = &decode.Group{Name: "png"}
118119
ProresFrame = &decode.Group{Name: "prores_frame"}
119120
Protobuf = &decode.Group{Name: "protobuf"}
120121
ProtobufWidevine = &decode.Group{Name: "protobuf_widevine"}
121122
PsshPlayready = &decode.Group{Name: "pssh_playready"}
122123
Rtmp = &decode.Group{Name: "rtmp"}
123-
SllPacket = &decode.Group{Name: "sll_packet"}
124124
Sll2Packet = &decode.Group{Name: "sll2_packet"}
125+
SllPacket = &decode.Group{Name: "sll_packet"}
125126
Tar = &decode.Group{Name: "tar"}
126127
TcpSegment = &decode.Group{Name: "tcp_segment"}
127128
Tiff = &decode.Group{Name: "tiff"}

0 commit comments

Comments
 (0)