Skip to content

Commit

Permalink
23001-18 in dash
Browse files Browse the repository at this point in the history
  • Loading branch information
rbouqueau committed Mar 8, 2024
1 parent 9574251 commit 6c2f05b
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions src/filters/dec_scte35.c
Expand Up @@ -60,6 +60,7 @@ GF_Err scte35dec_configure_pid(GF_Filter *filter, GF_FilterPid *pid, Bool is_rem
gf_filter_pid_copy_properties(ctx->opid, pid);
gf_filter_pid_set_property(ctx->opid, GF_PROP_PID_STREAM_TYPE, &PROP_UINT(GF_STREAM_METADATA) );
gf_filter_pid_set_property(ctx->opid, GF_PROP_PID_CODECID, &PROP_UINT(GF_CODECID_SCTE35) );
gf_filter_pid_set_property(ctx->opid, GF_PROP_PID_INTERLACED, &PROP_BOOL(GF_FALSE) );

return GF_OK;
}
Expand Down
4 changes: 2 additions & 2 deletions src/utils/constants.c
Expand Up @@ -163,8 +163,8 @@ CodecIDReg CodecRegistry [] = {
{GF_CODECID_FFMPEG, 0, GF_STREAM_UNKNOWN, "FFMPEG unmapped codec", "ffmpeg", NULL, NULL},

{GF_CODECID_TMCD, 0, GF_STREAM_METADATA, "QT TimeCode", "tmcd", NULL, NULL},
//{GF_CODECID_SCTE35, 0, GF_STREAM_METADATA, "SCTE35", "scte", NULL, NULL},
{GF_CODECID_EVTE, 0, GF_STREAM_METADATA, "Event Messages", "evte", NULL, NULL},
{GF_CODECID_SCTE35, 0, GF_STREAM_METADATA, "SCTE35", "scte", "evte", NULL},
{GF_CODECID_EVTE, 0, GF_STREAM_METADATA, "Event Messages", "evte", "evte", NULL},
{GF_CODECID_VVC, 0, GF_STREAM_VISUAL, "VVC Video", "vvc|266|h266", "vvc1", "video/vvc", .unframe=GF_TRUE},
{GF_CODECID_VVC_SUBPIC, 0, GF_STREAM_VISUAL, "VVC Subpicture Video", "vvs1", "vvs1", "video/x-vvc-subpic", .alt_codecid=GF_CODECID_VVC, .unframe=GF_TRUE},
{GF_CODECID_USAC, GF_CODECID_AAC_MPEG4, GF_STREAM_AUDIO, "xHEAAC / USAC Audio", "usac|xheaac", "mp4a", "audio/x-xheaac", .unframe=GF_TRUE},
Expand Down

0 comments on commit 6c2f05b

Please sign in to comment.