提交 6cc01c24 编写于 作者: C Carl Eugen Hoyos

Rename bitstreamBuffers* as bitstream_buffers*

Originally committed as revision 16491 to svn://svn.ffmpeg.org/ffmpeg/trunk
上级 1bb04d5a
......@@ -74,9 +74,9 @@ struct vdpau_render_state {
} info;
/** Describe size/location of the compressed video data. */
int bitstreamBuffersAllocated;
int bitstreamBuffersUsed;
VdpBitstreamBuffer *bitstreamBuffers;
int bitstream_buffers_allocated;
int bitstream_buffers_used;
VdpBitstreamBuffer *bitstream_buffers;
};
/* @}*/
......
......@@ -114,19 +114,19 @@ void ff_VDPAU_h264_add_data_chunk(H264Context *h, const uint8_t *buf, int buf_si
render = (struct vdpau_render_state*)s->current_picture_ptr->data[0];
assert(render);
if (!render->bitstreamBuffersUsed)
if (!render->bitstream_buffers_used)
VDPAU_h264_set_reference_frames(h);
render->bitstreamBuffers= av_fast_realloc(
render->bitstreamBuffers,
&render->bitstreamBuffersAllocated,
sizeof(*render->bitstreamBuffers)*(render->bitstreamBuffersUsed + 1)
render->bitstream_buffers= av_fast_realloc(
render->bitstream_buffers,
&render->bitstream_buffers_allocated,
sizeof(*render->bitstream_buffers)*(render->bitstream_buffers_used + 1)
);
render->bitstreamBuffers[render->bitstreamBuffersUsed].struct_version = VDP_BITSTREAM_BUFFER_VERSION;
render->bitstreamBuffers[render->bitstreamBuffersUsed].bitstream = buf;
render->bitstreamBuffers[render->bitstreamBuffersUsed].bitstream_bytes = buf_size;
render->bitstreamBuffersUsed++;
render->bitstream_buffers[render->bitstream_buffers_used].struct_version = VDP_BITSTREAM_BUFFER_VERSION;
render->bitstream_buffers[render->bitstream_buffers_used].bitstream = buf;
render->bitstream_buffers[render->bitstream_buffers_used].bitstream_bytes = buf_size;
render->bitstream_buffers_used++;
}
void ff_VDPAU_h264_picture_complete(H264Context *h)
......@@ -177,7 +177,7 @@ void ff_VDPAU_h264_picture_complete(H264Context *h)
memcpy(render->info.h264.scaling_lists_8x8, h->pps.scaling_matrix8, sizeof(render->info.h264.scaling_lists_8x8));
ff_draw_horiz_band(s, 0, s->avctx->height);
render->bitstreamBuffersUsed = 0;
render->bitstream_buffers_used = 0;
}
/* @}*/
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册