style fix

This commit is contained in:
Roman Arutyunyan 2012-07-23 17:34:23 +04:00
parent 309285632f
commit 295551947a

View file

@ -952,7 +952,8 @@ ngx_rtmp_hls_video(ngx_rtmp_session_t *s, ngx_rtmp_header_t *h,
if (ngx_rtmp_hls_copy(s, &cts, &p, 3, &in) != NGX_OK) {
return NGX_ERROR;
}
cts = ((cts & 0x00FF0000) >> 16) | ((cts & 0x000000FF) << 16) | (cts & 0x0000FF00);
cts = ((cts & 0x00FF0000) >> 16) | ((cts & 0x000000FF) << 16)
| (cts & 0x0000FF00);
out.pos = buffer;
out.last = buffer + sizeof(buffer) - FF_INPUT_BUFFER_PADDING_SIZE;