35 lines
683 B
Go
35 lines
683 B
Go
package metadata
|
|
|
|
import (
|
|
"errors"
|
|
"github.com/vmihailenco/msgpack/v5"
|
|
)
|
|
|
|
var (
|
|
_ msgpack.CustomDecoder = (*MediaMetadataDetails)(nil)
|
|
_ msgpack.CustomEncoder = (*MediaMetadataDetails)(nil)
|
|
)
|
|
|
|
type MediaMetadataDetails struct {
|
|
Data map[int]interface{}
|
|
}
|
|
|
|
func NewMediaMetadataDetails(data map[int]interface{}) *MediaMetadataDetails {
|
|
return &MediaMetadataDetails{Data: data}
|
|
}
|
|
|
|
func (mmd *MediaMetadataDetails) EncodeMsgpack(enc *msgpack.Encoder) error {
|
|
return errors.New("Not implemented")
|
|
}
|
|
|
|
func (mmd *MediaMetadataDetails) DecodeMsgpack(dec *msgpack.Decoder) error {
|
|
intMap, err := decodeIntMap(dec)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
mmd.Data = intMap
|
|
|
|
return nil
|
|
}
|