[FFmpeg-cvslog] hevc_sei: drop unused parameter
Vittorio Giovara
git at videolan.org
Tue Nov 19 18:06:54 CET 2013
ffmpeg | branch: master | Vittorio Giovara <vittorio.giovara at gmail.com> | Mon Nov 11 00:29:51 2013 +0100| [c673fc919c374c60b1e6d80d8822712eadf67f16] | committer: Vittorio Giovara
hevc_sei: drop unused parameter
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=c673fc919c374c60b1e6d80d8822712eadf67f16
---
libavcodec/hevc_sei.c | 7 +++----
1 file changed, 3 insertions(+), 4 deletions(-)
diff --git a/libavcodec/hevc_sei.c b/libavcodec/hevc_sei.c
index 8b84abf..1cf698b 100644
--- a/libavcodec/hevc_sei.c
+++ b/libavcodec/hevc_sei.c
@@ -25,8 +25,7 @@
#include "golomb.h"
#include "hevc.h"
-static void decode_nal_sei_decoded_picture_hash(HEVCContext *s,
- int payload_size)
+static void decode_nal_sei_decoded_picture_hash(HEVCContext *s)
{
int cIdx, i;
GetBitContext *gb = &s->HEVClc.gb;
@@ -92,7 +91,7 @@ static int decode_nal_sei_message(HEVCContext *s)
}
if (s->nal_unit_type == NAL_SEI_PREFIX) {
if (payload_type == 256)
- decode_nal_sei_decoded_picture_hash(s, payload_size);
+ decode_nal_sei_decoded_picture_hash(s);
else if (payload_type == 45)
decode_nal_sei_frame_packing_arrangement(&s->HEVClc);
else {
@@ -101,7 +100,7 @@ static int decode_nal_sei_message(HEVCContext *s)
}
} else { /* nal_unit_type == NAL_SEI_SUFFIX */
if (payload_type == 132)
- decode_nal_sei_decoded_picture_hash(s, payload_size);
+ decode_nal_sei_decoded_picture_hash(s);
else {
av_log(s->avctx, AV_LOG_DEBUG, "Skipped SUFFIX SEI %d\n", payload_type);
skip_bits(gb, 8 * payload_size);
More information about the ffmpeg-cvslog
mailing list