[ create a new paste ] login | about

Link: http://codepad.org/Ce65vRBn    [ raw code | output | fork ]

C, pasted on Nov 15:
1
2
3
4
5
6
#define FF_PROFILE_H264_CONSTRAINED  (1<<9)  // 8+1; constraint_set1_flag
#define FF_PROFILE_H264_CONSTRAINED_BASELINE (66|FF_PROFILE_H264_CONSTRAINED)

void main(void) {
    printf("%d\n", FF_PROFILE_H264_CONSTRAINED_BASELINE);
}


Output:
1
578


Create a new paste based on this one


Comments: