summaryrefslogtreecommitdiffstats
path: root/libavcodec/h264_mp4toannexb_bsf.c
diff options
context:
space:
mode:
authorPaul B Mahol <onemda@gmail.com>2013-10-02 17:20:29 +0000
committerPaul B Mahol <onemda@gmail.com>2013-10-02 17:20:29 +0000
commit2490996f38e02da28397631b11c6b3db8ba25934 (patch)
tree21c9f4224e20d3d27c6bef3a0a498a7364f18415 /libavcodec/h264_mp4toannexb_bsf.c
parent5e253fdfc1a4e727628243580c1c3d589c1951f1 (diff)
downloadffmpeg-streaming-2490996f38e02da28397631b11c6b3db8ba25934.zip
ffmpeg-streaming-2490996f38e02da28397631b11c6b3db8ba25934.tar.gz
avcodec: use designated initializers for bitstream filters
Signed-off-by: Paul B Mahol <onemda@gmail.com>
Diffstat (limited to 'libavcodec/h264_mp4toannexb_bsf.c')
-rw-r--r--libavcodec/h264_mp4toannexb_bsf.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/libavcodec/h264_mp4toannexb_bsf.c b/libavcodec/h264_mp4toannexb_bsf.c
index 6ca0100..58568a7 100644
--- a/libavcodec/h264_mp4toannexb_bsf.c
+++ b/libavcodec/h264_mp4toannexb_bsf.c
@@ -205,7 +205,7 @@ fail:
}
AVBitStreamFilter ff_h264_mp4toannexb_bsf = {
- "h264_mp4toannexb",
- sizeof(H264BSFContext),
- h264_mp4toannexb_filter,
+ .name = "h264_mp4toannexb",
+ .priv_data_size = sizeof(H264BSFContext),
+ .filter = h264_mp4toannexb_filter,
};
OpenPOWER on IntegriCloud