Skip to content

Commit

Permalink
fix SCT_ISAUDIO definition for EAC3.
Browse files Browse the repository at this point in the history
  • Loading branch information
Eric Valette committed Nov 16, 2011
1 parent 80ec678 commit 09014fe
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/tvheadend.h
Expand Up @@ -167,7 +167,7 @@ typedef enum {

#define SCT_ISVIDEO(t) ((t) == SCT_MPEG2VIDEO || (t) == SCT_H264)
#define SCT_ISAUDIO(t) ((t) == SCT_MPEG2AUDIO || (t) == SCT_AC3 || \
(t) == SCT_AAC)
(t) == SCT_AAC || (t) == SCT_EAC3)

/**
* The signal status of a tuner
Expand Down

1 comment on commit 09014fe

@xbmc-cobradevil
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Hello Eric,

this fixes the raw ts recording patch with invalid sound flagging.

Thanks for this.

Please sign in to comment.