From 88857ec5b986044c5a8e9d7a60e6b7db05a78637 Mon Sep 17 00:00:00 2001 From: Saxon Date: Tue, 10 Sep 2019 11:22:25 +0930 Subject: [PATCH] codec/h264/h264dec/cavlc.go: fixed error message that's returned on failure to read coeffTokenTable string --- codec/h264/h264dec/cavlc.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/codec/h264/h264dec/cavlc.go b/codec/h264/h264dec/cavlc.go index 01b8d940..da614083 100644 --- a/codec/h264/h264dec/cavlc.go +++ b/codec/h264/h264dec/cavlc.go @@ -53,7 +53,7 @@ const ( func init() { lines, err := csv.NewReader(strings.NewReader(coeffTokenTable)).ReadAll() if err != nil { - panic(fmt.Sprintf("could not read lines from coeftokenmap.csv file, failed with error: %v", err)) + panic(fmt.Sprintf("could not read lines from coeffTokenTable string, failed with error: %v", err)) } coeffTokenMaps, err = formCoeffTokenMap(lines)